forked from IRL-CT/Interactive-Lab-Hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobe_clock_simple.py
184 lines (151 loc) · 6.25 KB
/
globe_clock_simple.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.common.action_chains import ActionChains
import time
import digitalio
import board
from PIL import Image, ImageDraw
import adafruit_rgb_display.ili9341 as ili9341
import adafruit_rgb_display.st7789 as st7789 # pylint: disable=unused-import
import adafruit_rgb_display.hx8357 as hx8357 # pylint: disable=unused-import
import adafruit_rgb_display.st7735 as st7735 # pylint: disable=unused-import
import adafruit_rgb_display.ssd1351 as ssd1351 # pylint: disable=unused-import
import adafruit_rgb_display.ssd1331 as ssd1331 # pylint: disable=unused-import
driver_path = '/usr/lib/chromium-browser/chromedriver'
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--headless")
chrome_options.add_argument("--disable-gpu")
# browser is Chromium instead of Chrome
#chrome_options.BinaryLocation = "/usr/bin/chromium-browser"
# we use custom chromedriver for raspberry
#driver_path = "/usr/bin/chromedriver"
driver = webdriver.Chrome(driver_path, options=chrome_options)
#driver = webdriver.Chrome(options=chrome_options, service=Service(driver_path))
#driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options)
print("Instantiated Chromium Drivers.")
def update_image(driver):
driver.get('https://www.nightearth.com/?@37.09024,-95.712891,2z&data=$bWVsMmMxZDE=') # Night lights view
print("Updating image and saving screenshot")
time.sleep(60)
screenshot_image(driver)
def screenshot_image(driver, i):
screenshot = driver.save_screenshot(f'globe_{i}.png')
print("Done with screenshot")
def collect_images(driver):
print("Loading page")
driver.get('https://www.nightearth.com/?@37.09024,-95.712891,2z&data=$bWVsc2Qx') # Satellite view
time.sleep(60)
print("Collecting images")
actions = ActionChains(driver)
for i in range(8):
screenshot_image(driver, i)
actions.send_keys(Keys.ARROW_RIGHT).perform()
def crop_image():
print(f"Cropping images.")
for i in range(8):
im = Image.open(f'globe_{i}.png')
width, height = im.size
left = 210
top = 170
right = 570
bottom = 525
im1 = im.crop((left, top, right, bottom))
im1 = im1.convert('RGB')
im1 = im1.save(f"globe_{i}_cropped.jpg")
# Configuration for CS and DC pins (these are PiTFT defaults):
cs_pin = digitalio.DigitalInOut(board.CE0)
dc_pin = digitalio.DigitalInOut(board.D25)
reset_pin = None
# Config for display baudrate (default max is 24mhz):
BAUDRATE = 64000000
# Setup SPI bus using hardware SPI:
spi = board.SPI()
# pylint: disable=line-too-long
# Create the display:
# disp = st7789.ST7789(spi, rotation=90, # 2.0" ST7789
# disp = st7789.ST7789(spi, height=240, y_offset=80, rotation=180, # 1.3", 1.54" ST7789
# disp = st7789.ST7789(spi, rotation=90, width=135, height=240, x_offset=53, y_offset=40, # 1.14" ST7789
# disp = hx8357.HX8357(spi, rotation=180, # 3.5" HX8357
# disp = st7735.ST7735R(spi, rotation=90, # 1.8" ST7735R
# disp = st7735.ST7735R(spi, rotation=270, height=128, x_offset=2, y_offset=3, # 1.44" ST7735R
# disp = st7735.ST7735R(spi, rotation=90, bgr=True, # 0.96" MiniTFT ST7735R
# disp = ssd1351.SSD1351(spi, rotation=180, # 1.5" SSD1351
# disp = ssd1351.SSD1351(spi, height=96, y_offset=32, rotation=180, # 1.27" SSD1351
# disp = ssd1331.SSD1331(spi, rotation=180, # 0.96" SSD1331
disp = st7789.ST7789(
spi,
cs=cs_pin,
dc=dc_pin,
rst=reset_pin,
baudrate=BAUDRATE,
width=135,
height=240,
x_offset=53,
y_offset=40,
)
# pylint: enable=line-too-long
backlight = digitalio.DigitalInOut(board.D22)
backlight.switch_to_output()
backlight.value = True
buttonA = digitalio.DigitalInOut(board.D23)
buttonB = digitalio.DigitalInOut(board.D24)
buttonA.switch_to_input()
buttonB.switch_to_input()
def display_image_on_screen(i):
print("Displaying Image.")
# Create blank image for drawing.
# Make sure to create image with mode 'RGB' for full color.
if disp.rotation % 180 == 90:
height = disp.width # we swap height/width to rotate it to landscape!
width = disp.height
else:
width = disp.width # we swap height/width to rotate it to landscape!
height = disp.height
image = Image.new("RGB", (width, height))
# Get drawing object to draw on image.
draw = ImageDraw.Draw(image)
# Draw a black filled box to clear the image.
draw.rectangle((0, 0, width, height), outline=0, fill=(0, 0, 0))
disp.image(image)
image = Image.open(f"globe_{i}_cropped.jpg")
# Scale the image to the smaller screen dimension
image_ratio = image.width / image.height
screen_ratio = width / height
if screen_ratio < image_ratio:
scaled_width = image.width * height // image.height
scaled_height = height
else:
scaled_width = width
scaled_height = image.height * width // image.width
image = image.resize((scaled_width, scaled_height), Image.Resampling.BICUBIC)
# Crop and center the image
x = scaled_width // 2 - width // 2
y = scaled_height // 2 - height // 2
image = image.crop((x, y, x + width, y + height))
# Display image.
disp.image(image)
#collect_images(driver)
crop_image()
image_num = 0
update = False
display_image_on_screen(image_num)
while True:
# Whenever buttonA is pressed, zoomOut; buttonB is zoomIn
if buttonB.value and not buttonA.value: # just button A pressed
image_num -= 1
image_num %= 8
print(f"Button A Pressed. Loading image {image_num}")
update = True
if buttonA.value and not buttonB.value: # just button B pressed
image_num += 1
image_num %= 8
print(f"Button B Pressed. Loading image {image_num}")
update = True
if (not buttonA.value and not buttonB.value) or update: # none pressed
display_image_on_screen(image_num)
update = False
driver.quit()