├── .gitignore ├── .gitlab-ci.yml ├── LICENSE.md ├── README.md ├── examples └── adafruit-macropad │ ├── macropad-1.png │ ├── macropad-2.png │ ├── macropad-3.png │ ├── macropad-4.png │ └── macropad-set.png ├── fruity_menu ├── __init__.py ├── abstract.py ├── adjust.py ├── builder.py ├── menu.py ├── options.py └── test_builder.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── test_adjust.py ├── test_adjust_array.py ├── test_adjust_bool.py ├── test_adjust_number.py ├── test_menu.py └── test_options.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/README.md -------------------------------------------------------------------------------- /examples/adafruit-macropad/macropad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/examples/adafruit-macropad/macropad-1.png -------------------------------------------------------------------------------- /examples/adafruit-macropad/macropad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/examples/adafruit-macropad/macropad-2.png -------------------------------------------------------------------------------- /examples/adafruit-macropad/macropad-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/examples/adafruit-macropad/macropad-3.png -------------------------------------------------------------------------------- /examples/adafruit-macropad/macropad-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/examples/adafruit-macropad/macropad-4.png -------------------------------------------------------------------------------- /examples/adafruit-macropad/macropad-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/examples/adafruit-macropad/macropad-set.png -------------------------------------------------------------------------------- /fruity_menu/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.0' -------------------------------------------------------------------------------- /fruity_menu/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/fruity_menu/abstract.py -------------------------------------------------------------------------------- /fruity_menu/adjust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/fruity_menu/adjust.py -------------------------------------------------------------------------------- /fruity_menu/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/fruity_menu/builder.py -------------------------------------------------------------------------------- /fruity_menu/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/fruity_menu/menu.py -------------------------------------------------------------------------------- /fruity_menu/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/fruity_menu/options.py -------------------------------------------------------------------------------- /fruity_menu/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/fruity_menu/test_builder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_adjust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/test/test_adjust.py -------------------------------------------------------------------------------- /test/test_adjust_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/test/test_adjust_array.py -------------------------------------------------------------------------------- /test/test_adjust_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/test/test_adjust_bool.py -------------------------------------------------------------------------------- /test/test_adjust_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/test/test_adjust_number.py -------------------------------------------------------------------------------- /test/test_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/test/test_menu.py -------------------------------------------------------------------------------- /test/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatest-gatsby/fruity_menu/HEAD/test/test_options.py --------------------------------------------------------------------------------