diff --git a/README.md b/README.md index 86b8ca0..fd0ba46 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,8 @@ This repo contains everything you need to get started, from building the macropa creating your own apps! -## Building the Macropad (Pictures coming soontm): +## Building the Macropad : +Pictures and a more complete build guide coming soontm See the 3d_printing_files folder for all the required .3mf model files! If printing at home is not an option for you, you can reach out to https://craftcloud3d.com or similar services to diff --git a/macropad_os/abstract_app.py b/macropad_os/abstract_app.py index b584bd9..0b2a279 100644 --- a/macropad_os/abstract_app.py +++ b/macropad_os/abstract_app.py @@ -199,7 +199,6 @@ class App(object): self._key_lights[key_value] = color def set_colors(self, colors) -> None: - print(time.time()) if len(colors) != 12: raise ValueError("Colors must be passed in as a 12 len array") for color in colors: diff --git a/macropad_os/app_utils/__init__.py b/macropad_os/app_utils/__init__.py index 115c4ca..ec5c657 100644 --- a/macropad_os/app_utils/__init__.py +++ b/macropad_os/app_utils/__init__.py @@ -1,3 +1,2 @@ from .static_lighting import * -from .sound_patterns import * from .helpers import * \ No newline at end of file diff --git a/macropad_os/system_apps/options_app.py b/macropad_os/system_apps/options_app.py index fcc119a..79da675 100644 --- a/macropad_os/system_apps/options_app.py +++ b/macropad_os/system_apps/options_app.py @@ -204,7 +204,7 @@ class OptionsApp(App): def on_wheel_change(self, event): if event > 0: - self._up() - else: self._down() + else: + self._up() self.update_settings_menu()