Small fixes

sammachin-gprs
Renze Nicolai 2018-09-02 17:42:47 +02:00
parent 61dae74198
commit e25928e060
1 changed files with 15 additions and 10 deletions

View File

@ -11,26 +11,32 @@ from dialogs import *
import ugfx import ugfx
import ugfx_helper import ugfx_helper
def show_screen(color1, color2, text, text2=""): def show_screen(color1, color2, text, text2="", flip=False):
ugfx.clear(ugfx.html_color(color1)) if flip:
ugfx.text(0, 100, text, ugfx.html_color(color2)) ugfx.orientation(90)
ugfx.text(0, 200, text2, ugfx.html_color(color2)) ugfx.clear(ugfx.html_color(color1))
ugfx.set_default_font(ugfx.FONT_NAME)
ugfx.text(0, 100, text, ugfx.html_color(color2))
ugfx.set_default_font(ugfx.FONT_SMALL)
ugfx.text(0, 200, text2, ugfx.html_color(color2))
if flip:
ugfx.orientation(270)
def show_vip(inv): def show_vip(inv):
if (inv): if (inv):
show_screen(0xFFFFFF, 0xFFA400, "Dutch VIP") show_screen(0xFFFFFF, 0xFFA400, "Dutch VIP", "", True)
else: else:
show_screen(0xFFA400, 0xFFFFFF, "Dutch VIP") show_screen(0xFFA400, 0xFFFFFF, "Dutch VIP", "", True)
def show_flag(): def show_flag():
ugfx.display_image(0, 0, "holland/nederland.png") ugfx.display_image(0, 0, "holland/nederland.png")
ugfx_helper.init() ugfx_helper.init()
ugfx.clear() ugfx.clear()
ugfx.set_default_font(ugfx.FONT_NAME) show_flag()
show_vip(False)
import sim800 import sim800
import time
from tilda import Buttons from tilda import Buttons
sim800.poweron() sim800.poweron()
@ -162,11 +168,10 @@ Buttons.enable_interrupt(
vip = True vip = True
while True: while True:
#sleep_or_exit(0.5)
if vip_inv: if vip_inv:
vip_inv = False vip_inv = False
else: else:
vip_inv = True vip_inv = True
if vip: if vip:
show_vip(vip_inv) show_vip(vip_inv)
pass time.sleep(0.1)