forked from adafruit/Adafruit-Raspberry-Pi-Python-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex_14segment_clock.py
31 lines (27 loc) · 891 Bytes
/
ex_14segment_clock.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
#!/usr/bin/python
import time
import datetime
from Adafruit_14Segment import FourteenSegment
# ===========================================================================
# Clock Example
# ===========================================================================
segment = FourteenSegment(address=0x70)
print "Press CTRL+Z to exit"
# Continually update the time on a 4 char, 14-segment display
while(True):
now = datetime.datetime.now()
hour = now.hour
minute = now.minute
second = now.second
# Set hours
segment.writeDigit(0, int(hour / 10)) # Tens
# Set minutes
segment.writeDigit(2, int(minute / 10)) # Tens
segment.writeDigit(3, minute % 10) # Ones
# Toggle colon
if second % 2:
segment.writeDigit(1, hour % 10, True) # Ones, dot on
else:
segment.writeDigit(1, hour % 10) # Ones, dot off
# Wait one second
time.sleep(1)