simple hello world app added

sammachin-gprs
Benjamin Boortz 2018-09-01 17:48:26 +01:00
parent 7526b4b9b6
commit f6e27da0c7
1 changed files with 15 additions and 0 deletions

15
hello_world/main.py Normal file
View File

@ -0,0 +1,15 @@
"""This is a simple hello world app"""
___name___ = "Hello World"
___license___ = "MIT"
___dependencies___ = ["sleep", "app"]
___categories___ = ["EMF"]
import ugfx, os, time, sleep, app
# initialize screen
ugfx.init()
ugfx.clear()
ugfx.text(5, 5, "Hello World!", ugfx.BLACK)