A micropython library, which supports vertical and horizontal scrolling through menu items on both 2x16 and 4x20 LCDs
Go to file
BlueFox 4ad714fa83 Implemented the execute_selection and the run method, along with a new loop method
The new loop method allows for more advanced usages (e.g. when you want to use the cpu core for more than just the stupid while True, listen for btn presses procedure but also invoke other commands from time to time - then you can implement your 'own' run procedure!)
2024-11-01 16:30:41 +00:00
__init__.py Implemented the execute_selection and the run method, along with a new loop method 2024-11-01 16:30:41 +00:00
LICENSE Initial commit 2024-10-30 19:41:28 +00:00
README.md Added more items to the roadmap in README.md 2024-10-31 20:45:36 +00:00
tests.py Added tests.py (just a file of me testing the functionality of the library) 2024-10-31 21:04:42 +00:00

lcdMenu

A micropython library, which supports vertical and horizontal scrolling through menu items on both 2x16 and 4x20 liquid crystal displays

This project is the completely rewritten successor of my old (and now archived) ProgramChooser library.

Roadmap

  • forward, backward and select button
  • support for horizontal and vertical scrolling
  • support for both 2x16 and 4x20 LCDs
  • a reliable order of the menu items
  • good documentation for all of this (maybe through examples)
  • show an exit screen when a specific exit code is returned by a callback function
  • make the menu itself exitable (to enable stuff like submenus, etc.)
  • make the project a valid python package

License

This project is licensed under the GPL-v3-or-later. A copy can be found here.