161 lines
3.6 KiB
Python
161 lines
3.6 KiB
Python
# ICON schedule
|
|
# NAME Word Clock
|
|
# DESC No hands!
|
|
|
|
import time
|
|
|
|
import machine
|
|
import ntptime
|
|
import pngdec
|
|
from presto import Presto
|
|
|
|
# Setup for the Presto display
|
|
presto = Presto()
|
|
display = presto.display
|
|
WIDTH, HEIGHT = display.get_bounds()
|
|
BLACK = display.create_pen(0, 0, 0)
|
|
WHITE = display.create_pen(200, 200, 200)
|
|
GRAY = display.create_pen(30, 30, 30)
|
|
|
|
# Clear the screen before the network call is made
|
|
display.set_pen(BLACK)
|
|
display.clear()
|
|
presto.update()
|
|
|
|
# Length of time between updates in minutes.
|
|
UPDATE_INTERVAL = 15
|
|
|
|
rtc = machine.RTC()
|
|
time_string = None
|
|
words = ["it", "d", "is", "m", "about", "lv", "half", "c", "quarter", "b", "to", "past", "n", "one",
|
|
"two", "three", "four", "five", "six", "eleven", "ten", "d", "qdh", "eight", "seven", "rm", "twelve", "nine", "p", "ncsnheypresto", "O'Clock", "agrdsp"]
|
|
|
|
|
|
def show_message(text):
|
|
display.set_pen(BLACK)
|
|
display.clear()
|
|
display.set_pen(WHITE)
|
|
display.text(f"{text}", 5, 10, WIDTH, 2)
|
|
presto.update()
|
|
|
|
|
|
show_message("Connecting...")
|
|
|
|
try:
|
|
wifi = presto.connect()
|
|
except ValueError as e:
|
|
while True:
|
|
show_message(e)
|
|
except ImportError as e:
|
|
while True:
|
|
show_message(e)
|
|
|
|
# Set the correct time using the NTP service.
|
|
try:
|
|
ntptime.settime()
|
|
except OSError:
|
|
while True:
|
|
show_message("Unable to get time.\n\nCheck your network try again.")
|
|
|
|
|
|
def approx_time(hours, minutes):
|
|
nums = {0: "twelve", 1: "one", 2: "two",
|
|
3: "three", 4: "four", 5: "five", 6: "six",
|
|
7: "seven", 8: "eight", 9: "nine", 10: "ten",
|
|
11: "eleven", 12: "twelve"}
|
|
|
|
if hours == 12:
|
|
hours = 0
|
|
|
|
if minutes >= 0 and minutes < 8:
|
|
return "it is about " + nums[hours] + " O'Clock"
|
|
|
|
if minutes >= 8 and minutes < 23:
|
|
return "it is about quarter past " + nums[hours]
|
|
|
|
if minutes >= 23 and minutes < 38:
|
|
return "it is about half past " + nums[hours]
|
|
|
|
if minutes >= 38 and minutes < 53:
|
|
return "it is about quarter to " + nums[hours + 1]
|
|
|
|
return "it is about " + nums[hours + 1] + " O'Clock"
|
|
|
|
|
|
def update():
|
|
global time_string
|
|
# grab the current time from the ntp server and update the Pico RTC
|
|
try:
|
|
ntptime.settime()
|
|
except OSError:
|
|
print("Unable to contact NTP server")
|
|
|
|
current_t = rtc.datetime()
|
|
time_string = approx_time(current_t[4] - 12 if current_t[4] > 12 else current_t[4], current_t[5])
|
|
|
|
# Splits the string into an array of words for displaying later
|
|
time_string = time_string.split()
|
|
|
|
print(time_string)
|
|
|
|
|
|
def draw():
|
|
global time_string
|
|
display.set_font("bitmap8")
|
|
|
|
display.set_layer(1)
|
|
|
|
# Clear the screen
|
|
display.set_pen(BLACK)
|
|
display.clear()
|
|
|
|
default_x = 25
|
|
x = default_x
|
|
y = 35
|
|
|
|
line_space = 20
|
|
letter_space = 15
|
|
margin = 25
|
|
scale = 1
|
|
spacing = 1
|
|
|
|
for word in words:
|
|
|
|
if word in time_string:
|
|
display.set_pen(WHITE)
|
|
else:
|
|
display.set_pen(GRAY)
|
|
|
|
for letter in word:
|
|
text_length = display.measure_text(letter, scale, spacing)
|
|
if not x + text_length <= WIDTH - margin:
|
|
y += line_space
|
|
x = default_x
|
|
|
|
display.text(letter.upper(), x, y, WIDTH, scale=scale, spacing=spacing)
|
|
x += letter_space
|
|
|
|
presto.update()
|
|
|
|
|
|
# Set the background in layer 0
|
|
# This means we don't need to decode the image every frame
|
|
|
|
display.set_layer(0)
|
|
|
|
try:
|
|
p = pngdec.PNG(display)
|
|
|
|
p.open_file("wordclock_background.png")
|
|
p.decode(0, 0)
|
|
except OSError:
|
|
display.set_pen(BLACK)
|
|
display.clear()
|
|
|
|
|
|
while True:
|
|
update()
|
|
draw()
|
|
time.sleep(60 * UPDATE_INTERVAL)
|
|
|