You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in line 84 of aht.c if (addr != AHT_I2C_ADDRESS_GND || addr > AHT_I2C_ADDRESS_VCC)
The only way to not success the IF is when addr is equal to AHT_I2C_ADDRESS_GND, but not working for AHT_I2C_ADDRESS_VCC.
I suggest to change for addr != AHT_I2C_ADDRESS_GND && addr != AHT_I2C_ADDRESS_VCC
Which SDK are you using?
esp-idf
Which version of SDK are you using?
5.2
Which build target have you used?
esp32
esp32s2
esp32s3
esp32c2
esp8266
other
Component causing the issue
aht
Anything in the logs that might be useful for us?
No response
Additional information or context
No response
Confirmation
This report is not a question nor a request for drivers.
The text was updated successfully, but these errors were encountered:
The issue
There is a bug in line 84 of aht.c
if (addr != AHT_I2C_ADDRESS_GND || addr > AHT_I2C_ADDRESS_VCC)
The only way to not success the IF is when addr is equal to AHT_I2C_ADDRESS_GND, but not working for AHT_I2C_ADDRESS_VCC.
I suggest to change for
addr != AHT_I2C_ADDRESS_GND && addr != AHT_I2C_ADDRESS_VCC
Which SDK are you using?
esp-idf
Which version of SDK are you using?
5.2
Which build target have you used?
Component causing the issue
aht
Anything in the logs that might be useful for us?
No response
Additional information or context
No response
Confirmation
The text was updated successfully, but these errors were encountered: