by Ricardo “Rudxain” Fernández Serrata
Version 5 (September 26, 2023)
Download (224 downloads)
Shows notification where battery level is shown as octal, on a scale from 0 to 63 inclusive [0o00, 0o77].
63 is the highest Mersenne less than 100, which means the downscaling preserves the most precision.
Hexadecimal doesn't have "6bit symmetry" (max is 0x3F). The aesthetic choices are base 2, 4, and 8, latter being most efficient.
To save energy, I precomputed the text using this expression `(n >> 3) ++ (n & 7)`, where `n := round(l * 0.63)`
Rudxain profile: llamalab.com/automate/community/flows/42921
Tags: retro
LICENSE: https://unlicense.org
5 stars | 1 | |
4 stars | 1 | |
3 stars | 0 | |
2 stars | 0 | |
1 star | 0 | |
Reports | 0 |
Rate and review within the app in the Community section.