Skip to content

Commit

Permalink
fixup! add driver module for ADS1100 ADC chip
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Hierholzer committed Sep 2, 2023
1 parent e43621d commit 2346589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/ads1100.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _handle_timer(self, eventtime):
if self._last_value < self._minval or self._last_value > self._maxval :
self._error_count += 1
if self._error_count >= self._range_check_count :
self._printer.invoke_shutdown("ADC out of range")
self._printer.invoke_shutdown("ADC (ADS1100) out of range")
else :
self._error_count = 0

Expand Down

0 comments on commit 2346589

Please sign in to comment.