Add sponsors app

tildatorch
Marek Ventur 2018-08-27 17:25:54 +01:00
parent cd38a55af6
commit d0a133c978
1 changed files with 26 additions and 0 deletions

26
sponsors/main.py Normal file
View File

@ -0,0 +1,26 @@
"""A big "thank you" to all our Sponsors who made this year's badge possible!"""
___name___ = "Sponsors"
___license___ = "MIT"
___dependencies___ = ["wifi", "http", "ugfx_helper"]
___categories___ = ["EMF"]
___bootstrapped___ = True
import ugfx_helper, os, wifi, ugfx, http, time
from tilda import Buttons
ugfx_helper.init()
ugfx.clear()
ugfx.text(5, 5, "Loading...", ugfx.BLACK)
try:
image = http.get("http://s3.amazonaws.com/tilda-badge/sponsors/screen.png").raise_for_status().content
ugfx.display_image(0,0,bytearray(image))
except:
ugfx.clear()
ugfx.text(5, 5, "Couldn't download sponsors", ugfx.BLACK)
while (not Buttons.is_pressed(Buttons.BTN_A)) and (not Buttons.is_pressed(Buttons.BTN_B)) and (not Buttons.is_pressed(Buttons.BTN_Menu)):
time.sleep(0.01)
ugfx.clear()