Run on boot

This commit is contained in:
2024-05-16 16:21:50 +01:00
parent 792a84782d
commit 3b2e3a830f
2 changed files with 4 additions and 4 deletions

4
app.py
View File

@@ -276,7 +276,3 @@ class App:
self.__manageScreen()
except KeyboardInterrupt:
machine.reset()
if __name__ == "__main__":
app = App()
app.run()

4
main.py Normal file
View File

@@ -0,0 +1,4 @@
from app import App
app = App()
app.run()