You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
11 lines
237 B
Python
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)
|