micropython-sht30
micropython-sht30 copied to clipboard
SHT30 sensor driver in pure python based on I2C bus
Hello, Thank you for this library. SHT30 sesnor comes with built-in alert pin which can be activated ex. if humidity is higher then set. Details 3.5 (page 9) of datasheet:...
Hi, This patch adds a really simple method to calculate dew point, and tidies up the code a bit. Thanks for a really helpful module :) Bruce
Hi Roberto and Matthew I don't know if I'm correct making an issue on Github for this when running into the above problem. Otherwise tell me where to put it...
>>> temperature, humidity = sensor.measure() Traceback (most recent call last): File "", line 1, in File "sht30.py", line 136, in measure File "sht30.py", line 100, in send_cmd TypeError: 'int' object...
Hi @rsc1975, thanks for providing this module, great help for my project! Had to do minor changes to get it running on current MicroPython versions: - remove all i2c.start() calls...