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
I test program ,but always wrong.
I edit dht.cpp .
in line 82.
uint8_t sum = bits[0] + bits[2];
I thing is
uint8_t sum = bits[0] +bits[1] + bits[2]+bits[3] ;
and the program work.
so,I think bits[1] and bits[3] not always 0.
The text was updated successfully, but these errors were encountered:
I test program ,but always wrong.
I edit dht.cpp .
in line 82.
uint8_t sum = bits[0] + bits[2];
I thing is
uint8_t sum = bits[0] +bits[1] + bits[2]+bits[3] ;
and the program work.
so,I think bits[1] and bits[3] not always 0.
The text was updated successfully, but these errors were encountered: