27 lines
817 B
Python
27 lines
817 B
Python
|
"""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()
|