Files
MicroPythonOS/internal_filesystem/apps/com.micropythonos.helloworld/assets/hello.py
T
Thomas Farstrike 415b3d7eb3 Add HelloWorld app
2025-06-09 16:00:38 +02:00

11 lines
237 B
Python

from mpos.apps import Activity
class Hello(Activity):
def onCreate(self):
screen = lv.obj()
label = lv.label(screen)
label.set_text('Hello World!')
label.center()
self.setContentView(screen)