Update inkycal.py

This commit is contained in:
Ace 2019-12-05 23:03:54 +01:00 committed by GitHub
parent 17c8dae1e5
commit 7058f9c98a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,29 +53,41 @@ while True:
else: else:
print('not required. Continuing...') print('not required. Continuing...')
else: else:
print('Calibration skipped!. Please note that not calibrating epaper', print('Calibration skipped!. Please note that not calibrating e-paper',
'displays causes ghosting') 'displays causes ghosting')
"""----------------Generating and assembling images------""" """----------------Generating and assembling images------"""
if top_section == 'Weather': if top_section == 'Weather':
try:
weather.main() weather.main()
weather_image = Image.open(image_path + 'weather.png') weather_image = Image.open(image_path + 'weather.png')
image.paste(weather_image, (0, 0)) image.paste(weather_image, (0, 0))
except:
pass
if middle_section == 'Calendar': if middle_section == 'Calendar':
try:
calendar.main() calendar.main()
calendar_image = Image.open(image_path + 'calendar.png') calendar_image = Image.open(image_path + 'calendar.png')
image.paste(calendar_image, (0, middle_section_offset)) image.paste(calendar_image, (0, middle_section_offset))
except:
pass
if middle_section == 'Agenda': if middle_section == 'Agenda':
try:
agenda.main() agenda.main()
agenda_image = Image.open(image_path + 'agenda.png') agenda_image = Image.open(image_path + 'agenda.png')
image.paste(agenda_image, (0, middle_section_offset)) image.paste(agenda_image, (0, middle_section_offset))
except:
pass
if bottom_section == 'RSS': if bottom_section == 'RSS':
try:
rss.main() rss.main()
rss_image = Image.open(image_path + 'rss.png') rss_image = Image.open(image_path + 'rss.png')
image.paste(rss_image, (0, bottom_section_offset)) image.paste(rss_image, (0, bottom_section_offset))
except:
pass
image.save(image_path + 'canvas.png') image.save(image_path + 'canvas.png')
display.reduce_colours(image) display.reduce_colours(image)