v.0.5.2 weather_checker

This commit is contained in:
tiijay
2025-11-12 12:04:38 +01:00
parent eae0eaa9c8
commit 9d51f0827d
5 changed files with 67 additions and 56 deletions

11
main.py
View File

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