Jon Black
Jon Black
A user left a comment on the blog asking for the ability to set the timed transition interval dynamically. I need a good use case example for this.
Add to PlatformIO, including creating a library.json file.
There are no tests at the moment which makes refactoring difficult. The tests would ideally run on the host rather than on an Arduino to make continuous integration easier.
`String` requires a lot of memory. Try to find a way to remove it.
Support serializing the menu system state to binary so that users can write it to persistent storage such as an SD card. It should also be possible to reload the...
The library is getting a little more complex and the examples probably won't be enough to help newcomers. Write some documentation and stick it up on readthedocs.org
Calculate the radius for a point based on the zoom level so it's always at a decent scale.
Calculate the zoom level based on the bounds so the most ideal level is always chosen.
As a user I'd like to re-order the storage locations that appear in the left pane so that I can have locations that are used more often near the top....
CLI applications are expected to behave in a certain way. This is especially important when those applications are used in scripts. * Exit status should reflect success or failure (see...