From f6e27da0c7bd4dc732faad166765d0cfa30bd4ea Mon Sep 17 00:00:00 2001 From: Benjamin Boortz Date: Sat, 1 Sep 2018 17:48:26 +0100 Subject: [PATCH] simple hello world app added --- hello_world/main.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hello_world/main.py diff --git a/hello_world/main.py b/hello_world/main.py new file mode 100644 index 0000000..4955105 --- /dev/null +++ b/hello_world/main.py @@ -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)