Merge pull request #56 from bboortz/hello_world

simple hello world app added
sammachin-gprs
Marek Ventur 2018-09-01 19:24:46 +01:00 committed by GitHub
commit f0cc9504d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)