EMF_Camp_Badge/hello_world/main.py

16 lines
296 B
Python
Raw Normal View History

2018-09-01 12:48:26 -04:00
"""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)