EMF_Camp_Badge/tildatorch/main.py

29 lines
608 B
Python
Raw Normal View History

2018-08-29 12:57:07 -04:00
"""This app goes with the Torch Tutorial"""
2018-09-03 09:59:37 -04:00
___title___ = "Tilda Torch"
2018-08-29 12:57:07 -04:00
___license___ = "MIT"
___dependencies___ = ["sleep", "app"]
2018-08-29 12:57:07 -04:00
___categories___ = ["EMF"]
import ugfx, os, time, sleep, app
2018-08-29 12:57:07 -04:00
from tilda import Buttons
from machine import Pin
torch = Pin(Pin.GPIO_FET)
ugfx.init()
Pin(Pin.PWM_LCD_BLIGHT).on()
ugfx.clear()
ugfx.text(5, 5, "TORRRRRRCH!!!!!", ugfx.BLACK)
torch.on()
while (not Buttons.is_pressed(Buttons.BTN_A)) and (not Buttons.is_pressed(Buttons.BTN_B)) and (not Buttons.is_pressed(Buttons.BTN_Menu)):
sleep.wfi()
torch.off()
ugfx.clear()
app.restart_to_default()