aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/sht3x.py
diff options
context:
space:
mode:
authorThijs Triemstra <info@collab.nl>2025-07-25 18:31:19 +0200
committerGitHub <noreply@github.com>2025-07-25 12:31:19 -0400
commit60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af (patch)
tree74cd5c84ca4758c2de14f0fd1686b75a74bfa142 /klippy/extras/sht3x.py
parentef4c76fe9494d0e011d6da5610fa868d2e702fff (diff)
downloadkutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.gz
kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.xz
kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.zip
klippy: fix typos in python code (#6989)
Signed-off-by: Thijs Triemstra <info@collab.nl>
Diffstat (limited to 'klippy/extras/sht3x.py')
-rw-r--r--klippy/extras/sht3x.py4
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