v.0.5.3 emoji_checker

This commit is contained in:
tiijay
2025-11-12 12:35:26 +01:00
parent 9d51f0827d
commit 2737b043c1
6 changed files with 33 additions and 23 deletions

10
main.py
View File

@@ -1,6 +1,6 @@
from app.display.neopixel_64x64 import NeoPixel_64x64
import app.tryout as tryout
from app.tryout import Font_Checker, Weather_Checker
from app.tryout import Font_Checker, Weather_Checker, Emoji_Checker
from app.utils import show_system_load
# Programm Startpunkt
if __name__ == '__main__':
@@ -10,9 +10,11 @@ if __name__ == '__main__':
# font_checker.fonts_check(pretty=False)
# tryout.emojis_check(display)
emoji_checker : Emoji_Checker = Emoji_Checker(display)
emoji_checker.check()
# tryout.weather_check(display, test_mode=False)
weather_checker: Weather_Checker = Weather_Checker( display)
weather_checker.check(test_mode=False)
# utils.show_system_load()
show_system_load()