3-Aug-2018
With the battery implemented it makes sense to use the deep sleep capabilities of the ESP32. This would make the battery last up to months with a single charge. This estimates are heavily dependent on how long the device is awake for. The workflow is as follows:
- Tickers view is shown
- Store necessary state
- Go into deep sleep for "ticker scroll frequency"
- Wake up
- Restore state
6-Aug-2018
Some quick measurements about the device consumptions and other metrics:
Display Consumption | 3 | mA |
Battery capacity | 500 | mA |
Device Consumption | 85 | mA |
Peek Consumption | 150 | mA |
On time | 2 | sec |
Theoretical battery estimates:
Updates per day | Hourly Consumption / mah | Daily consumption / mah | Battery last / days |
1 | 0.05 | 1.13 | 441.18 |
2 | 0.09 | 2.27 | 220.59 |
3 | 0.14 | 3.40 | 147.06 |
4 | 0.19 | 4.53 | 110.29 |
6 | 0.28 | 6.80 | 73.53 |
12 | 0.57 | 13.60 | 36.76 |
24 | 1.13 | 27.20 | 18.38 |
360 | 17.00 | 408.00 | 1.23 |
1300 | 61.39 | 1473.33 | 0.34 |
9-Aug-2019
In order to maintain a state during deep sleep cycles the ESP32 has another CPU (ULP) and RAM (RTC)
that stay awake during deep sleep, all other peripheals are turned off (depending on the sleep mode).
These are ultra low power components that, as expected, are very limited.
An alternative to using RTC would be to use SPIFFS but its best to avoid constant writes to it since it has a limited number of write cycles.
With the current approach, the total boot time needs to be maintained during sleep cycles in order for the tickers
to function properly.
RTC is only able to store uint16's so two addresses have to be used in order to store a long (epoch time).
12-Aug-2019
The device outperforms the theoretical charts by a lot, more tests are required but it lasted more than 16h on a single charge (~30% battery left) with 10sec scroll time and 60sec update rate.
One persistent issue is the speaker pop sound on power on/power off cycle. This seems to be caused by noise or unfiltered outputs on the chip NS4148 (3w amplifier). The chip has a sleep mode pin which should reduce the pop sound but its currently connected to 3V3 thus not being available to the ESP32. For now the N Speaker wire was soldered to pin IO27 in order to control when the speaker is on. A big downside is that this essentially renders the amplifier useless making the speaker around half as loud.
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.