sht3x-esp-idf icon indicating copy to clipboard operation
sht3x-esp-idf copied to clipboard

SHT3x driver for ESP-IDF (ESP32)

Results 2 sht3x-esp-idf issues
Sort by recently updated
recently updated
newest added

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...