-
Notifications
You must be signed in to change notification settings - Fork 67
/
display.py
executable file
·55 lines (43 loc) · 1.53 KB
/
display.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/python3
import sys
import os
import logging
import datetime
from PIL import Image
from utility import configure_logging
libdir = "./lib/e-Paper/RaspberryPi_JetsonNano/python/lib"
if os.path.exists(libdir):
sys.path.append(libdir)
configure_logging()
# Dear future me: consider converting this to a WAVESHARE_VERSION variable instead if you ever intend to support more screen sizes.
waveshare_epd75_version = os.getenv("WAVESHARE_EPD75_VERSION", "2")
if (waveshare_epd75_version == "1"):
from waveshare_epd import epd7in5 as epd7in5
elif (waveshare_epd75_version == "2B"):
from waveshare_epd import epd7in5b_V2 as epd7in5
else:
from waveshare_epd import epd7in5_V2 as epd7in5
try:
epd = epd7in5.EPD()
logging.debug("Initialize screen")
epd.init()
# Full screen refresh at 2 AM
if datetime.datetime.now().minute == 0 and datetime.datetime.now().hour == 2:
logging.debug("Clear screen")
epd.Clear()
filename = sys.argv[1]
logging.debug("Read image file: " + filename)
Himage = Image.open(filename)
logging.info("Display image file on screen")
if waveshare_epd75_version == "2B":
Limage_Other = Image.new('1', (epd.height, epd.width), 255) # 255: clear the frame
epd.display(epd.getbuffer(Himage), epd.getbuffer(Limage_Other))
else:
epd.display(epd.getbuffer(Himage))
epd.sleep()
except IOError as e:
logging.exception(e)
except KeyboardInterrupt:
logging.debug("Keyboard Interrupt - Exit")
epd7in5.epdconfig.module_exit()
exit()