Files
MicroPythonOS/internal_filesystem/apps/com.micropythonos.helloworld/assets/hello.py
T
2026-01-13 00:38:17 +01:00

11 lines
232 B
Python

from mpos 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)