sht3x-esp-idf
sht3x-esp-idf copied to clipboard
SHT3x driver for ESP-IDF (ESP32)
Observation: sdk_system_get_time() returns 0xFFFFFFFF instead of rolling over properly when the term `time.tv_sec*1e6 + time.tv_usec` exceeds max(uint32_t). Module: components/esp8266_wrapper/esp8266_wrapper.c Workaround: ` uint32_t sdk_system_get_time () { struct timeval time; gettimeofday(&time,0); return...
Hi!Guys, I changed this repository code, visit by[https://github.com/MGod-monkey/sht3x-esp-idf5x](https://github.com/MGod-monkey/sht3x-esp-idf5x) There are some new features: - Adapting to ESP-IDF5.x - Add a scanner, you can detect whether sht3x is normal by scanning...