add /start/piamedia for company logo
This commit is contained in:
parent
ba2eeeec81
commit
55ed593019
2 changed files with 13 additions and 0 deletions
13
scenes/piamedia.py
Normal file
13
scenes/piamedia.py
Normal 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)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue