diff --git a/holland/main.py b/holland/main.py index 5597329..0cfbaef 100644 --- a/holland/main.py +++ b/holland/main.py @@ -33,9 +33,12 @@ def show_vip(inv): def show_flag(): ugfx.display_image(0, 0, "holland/nederland.png") +def show_boot(): + ugfx.display_image(0, 0, "holland/start.png") + ugfx_helper.init() ugfx.clear() -show_flag() +show_boot() import sim800 import time @@ -134,7 +137,9 @@ def cbButton6(button_id): n.display([0x000000, 0x000000]) def cbButton7(button_id): - pass + global vip + vip = False + show_boot() def cbButton8(button_id): global strobe diff --git a/holland/otter.png b/holland/otter.png index 55d4bcd..4bf3411 100644 Binary files a/holland/otter.png and b/holland/otter.png differ diff --git a/holland/start.png b/holland/start.png new file mode 100644 index 0000000..091b816 Binary files /dev/null and b/holland/start.png differ