add /start/piamedia for company logo

This commit is contained in:
Christoph Haas 2026-01-17 20:35:40 +01:00
parent ba2eeeec81
commit 55ed593019
2 changed files with 13 additions and 0 deletions

BIN
images/piamedia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

13
scenes/piamedia.py Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python3
import io
from time import sleep
from PIL import Image, ImageDraw, ImageFont
import lib.display
def start(stop_event, args):
image_buffer = Image.open("images/piamedia.png").convert("RGBA")
lib.display.matrix.show(image_buffer)
while not stop_event.is_set():
sleep(0.2)