usermod/SN_Photoresistor: Fix invalid initializer

This commit is contained in:
Will Miles 2025-03-28 20:15:36 -04:00
parent fab80f4e4e
commit 62d3e155bd

View File

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