You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
31 lines
925 B
Python
31 lines
925 B
Python
import task_handler
|
|
|
|
|
|
import mpos.ui
|
|
mpos.ui.create_rootscreen()
|
|
mpos.ui.create_notification_bar()
|
|
mpos.ui.create_drawer(display)
|
|
mpos.ui.handle_back_swipe()
|
|
mpos.ui.handle_top_swipe()
|
|
mpos.ui.th = task_handler.TaskHandler(duration=5) # 5ms is recommended for MicroPython+LVGL on desktop
|
|
|
|
# Maybe this should only be done if there is not already a "builtin" folder... with the expected apps/4apps
|
|
try:
|
|
import freezefs_mount_builtin
|
|
except Exception as e:
|
|
print("main.py: WARNING: could not import/run freezefs_mount_builtin: ", e)
|
|
|
|
from mpos import apps
|
|
apps.execute_script("builtin/system/button.py", True) # Install button handler through IRQ
|
|
|
|
apps.auto_connect()
|
|
|
|
apps.restart_launcher()
|
|
|
|
# If we got this far without crashing, then no need to rollback the update:
|
|
try:
|
|
import ota.rollback
|
|
ota.rollback.cancel()
|
|
except Exception as e:
|
|
print("main.py: warning: could not mark this update as valid:", e)
|