usermod/SN_Photoresistor: Fix invalid initializer

pull/4623/head
Will Miles 2025-03-28 20:15:36 -04:00
rodzic fab80f4e4e
commit 62d3e155bd
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -46,7 +46,7 @@ private:
// allows this library to report to the user how long until the first
// measurement
bool getLuminanceComplete = false;
uint16_t lastLDRValue = -1000;
uint16_t lastLDRValue = 65535;
// flag set at startup
bool disabled = false;