Add iCal reader and module

This commit is contained in:
nemunaire 2022-08-14 19:51:51 +02:00
commit 8c7d5f583e
2 changed files with 69 additions and 0 deletions

View file

@ -69,6 +69,11 @@ def main():
ratp = RATPWeatherModule().draw_module(config, int(480/1.6), 94)
image.paste(ratp, (480-int(480/1.6), 155))
# ical
from modules.ical import IcalModule
cal = IcalModule().draw_module(config, 480-int(480/1.6), 255)
image.paste(cal, (0, 250))
# Toolbar
from modules.weather import WeatherToolbarModule
image.paste(WeatherToolbarModule().draw_module(config, 480, 50), (0, 530))