Sean Cherven
Sean Cherven
Tried that, it still threw errors.
Okay, well I'm going to stick with my method, as it's a more "future proof" way of doing it. I was just throwing out there that you should fix the...
Interesting.. I'll have to check that out.
Something along the lines of this: https://www.amazon.com/dp/B00VKAT9VA/
I am also having a problem enabling the battery on my ESP32-WROOM-32. ``` URTCLIB_WIRE.begin(); myRTC.set_model(URTCLIB_MODEL_DS3231); if (myRTC.enableBattery()) { Serial.println("Battery activated correctly."); } else { Serial.println("ERROR activating battery."); } ``` I...
I am also having a problem enabling the battery on my ESP32-WROOM-32. ``` URTCLIB_WIRE.begin(); myRTC.set_model(URTCLIB_MODEL_DS3231); if (myRTC.enableBattery()) { Serial.println("Battery activated correctly."); } else { Serial.println("ERROR activating battery."); } ``` I...
As a matter of fact, rtc.lostPower() always returns false, even after a complete power failure (remove battery and remove vcc, and shorting battery pins to be sure) The time is...
Okay, so I put rtc.refresh() before both the lostPower AND enableBattery calls, and now this is what I get: enableBattery is now returning true (the success message) lostPower is now...
I'm using DS3231
@jeanfabre I'm having this same issue. Can you please explain better how to apply your fix?