Files
weather-info/main.py
2025-11-12 10:49:53 +01:00

14 lines
414 B
Python

from app.display.neopixel_64x64 import NeoPixel_64x64
import app.tryout as tryout
from app.tryout.font_checker import Font_Checker
# Programm Startpunkt
if __name__ == '__main__':
display = NeoPixel_64x64()
font_checker : Font_Checker = Font_Checker( display)
font_checker.fonts_check(pretty=False)
# tryout.emojis_check(display)
# tryout.weather_check(display, test_mode=False)
# utils.show_system_load()