diff options
Diffstat (limited to 'klippy/extras/sht3x.py')
-rw-r--r-- | klippy/extras/sht3x.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/sht3x.py b/klippy/extras/sht3x.py index 79cd7bfe..c76ceb76 100644 --- a/klippy/extras/sht3x.py +++ b/klippy/extras/sht3x.py @@ -100,12 +100,12 @@ class SHT3X: self.i2c.i2c_write_wait_ack( SHT3X_CMD['PERIODIC']['2HZ']['HIGH_REP'] ) - # Wait <=15.5ms for first measurment + # Wait <=15.5ms for first measurement self.reactor.pause(self.reactor.monotonic() + .0155) def _sample_sht3x(self, eventtime): try: - # Read measurment + # Read measurement retries = 5 params = None error = None |