-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recover old state after powerdown/ reset #10
Comments
Hello @michapr Such example would indeed be a great addition. 👍 However we encourage contributions, so someone might do. Cheers |
This is a pity, because without this feature, the sensor cannot be used in power-saving mode. I had assumed that you know best what needs to be done to implement it. |
Looks like the algorithm stores everything in a single struct. So it should be trivial to persist this blob to storage. The bigger question is whether the algorithm makes sense to have time gaps. The readme say it's been tested for 1-10 second sampling. What if there is 1 second sampling for a 60 second time window. Then the device stores the blob and sleeps for a relatively long period of time. Let's say any where from 10 minutes to 1 hour. Then it wakes up from deep sleep. Restores the blob to memory and samples for 60 seconds again. Does the algorithm still make sense when used this way? |
The SGP4x sensors perform best under continuous operation with a 1Hz measurement frequency. Decreasing the measurement frequency reduces the response time. E.g. measuring for a short time and then sleeping will most probably not work very well. Restoring the state helps you to get faster to the same state you had before. It can be used to recover faster after an intentional or unintentional reboot of the device. The best you can do for a low power application is to use a sampling interval of 10s and go to deep sleep in between the measurements. In this case you don't need to recover the state. The SGP4x sensor uses on average 34uA in idle mode. |
Hi,
If using the device with a ESP32 and deep sleep for saving energy the gas index algorithm will not work because all collected values lost - as far as I understand.
Same will happen if power is down (as sample replace battery or empty LiPo).
Can you provide any example code for save / restore the states to EEPROM?
For ESP32 deep sleep it could be modified later for RTC RAM - and maybe once every hour save to EEPROM or maybe use external FRAM.
THANKS!
The text was updated successfully, but these errors were encountered: