v.0.6.3 imports organized

This commit is contained in:
tiijay
2025-11-13 15:46:08 +01:00
parent fcc1899758
commit d9fe55688d
6 changed files with 18 additions and 12 deletions

13
main.py
View File

@@ -1,7 +1,8 @@
from app.display.neopixel_64x64 import NeoPixel_64x64
from app.display import NeoPixel_64x64
from app.display.fonts import font_5x7
from app.tryout import Font_Checker, Weather_Checker, Emoji_Checker
from app.utils import show_system_load
from app.web.wlan import Wlan
from app.web import Wlan
# Programm Startpunkt
if __name__ == '__main__':
@@ -12,12 +13,12 @@ if __name__ == '__main__':
# font_checker : Font_Checker = Font_Checker( display)
# 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)
display.set_font(font_5x7)
weather_checker: Weather_Checker = Weather_Checker( display=display)
weather_checker.check(city="esbjerg", lang="de", test_mode=False)
weather_checker.check(city="ahrensburg", lang="de", test_mode=False)
# show_system_load()