EMF_Camp_Badge/serendipity/main.py

16 lines
311 B
Python
Raw Normal View History

2018-09-02 07:17:36 -04:00
"""This is a simple hello world app"""
___name___ = "serendipity"
___license___ = "MIT"
___dependencies___ = ["sleep", "app"]
___categories___ = ["EMF", "Other"]
import ugfx, os, time, sleep, app
# initialize screen
ugfx.init()
ugfx.clear()
ugfx.text(5, 5, "[work in progress]", ugfx.BLACK)