Add iCal reader and module
This commit is contained in:
parent
bcd130dc06
commit
8c7d5f583e
2 changed files with 69 additions and 0 deletions
5
main.py
5
main.py
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue