arduino-menusystem
arduino-menusystem copied to clipboard
Arduino library for implementing a menu system
Hello, First, I would like to thank you for the menu system it seems well thought out. But I have a few questions. 1. In my use case I will...
I am trying to to create a menu where the renderer will also display the parent item name on the current item. For example, think of this structure: ``` Main...
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.
The menu items (and/or menus) can be added dynamically? For example, I have a list of log dates that I need to be added as menu items when a "Show...
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
menu1(item1,item2,item3) menu2(item1,item2) etc i use encoder to ms.next ms.previous ..all work fine with menuitems but how to skip ms.select when i scroll menus because each menu its a separate lcd...