-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneo7seg.py
150 lines (138 loc) · 4.91 KB
/
neo7seg.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
#!/usr/bin/env python3
# 7 segment neopixel display
# This is meant to be just a part of a neopixel chain
# The entire neopixel chain needs to be instantiated outside of this file
# and then passed in with an offset
import time
import board
import neopixel
import asyncio
from logger import log as log
# the 7 seg is a series of 7 (4 pixel) segments
# the order of segments is as follow
# described using an index 0..6
# 5 5 5 5
# 4 0
# 4 0
# 4 0
# 4 0
# 6 6 6 6
# 3 1
# 3 1
# 3 1
# 3 1
# 2 2 2 2
# we can define characters as an array of segment indicies
# order of indicies doesn't matter
lookup = {} # dict to use string as index
lookup['0'] = [0,1,2,3,4,5]
lookup['1'] = [0,1]
lookup['2'] = [5,0,6,3,2]
lookup['3'] = [5,0,6,1,2]
lookup['4'] = [4,6,0,1]
lookup['5'] = [5,4,6,1,2]
lookup['6'] = [5,4,6,1,2,3]
lookup['7'] = [5,0,1]
lookup['8'] = [0,1,2,3,4,5,6]
lookup['9'] = [4,5,6,0,1,2]
lookup['A'] = lookup['a'] = [3,1,6,4,5,0]
lookup['B'] = lookup['b'] = [1,2,3,4,6]
lookup['C'] = lookup['c'] = [5,4,3,2]
lookup['D'] = lookup['d'] = [0,1,2,3,6]
lookup['E'] = lookup['e'] = [5,4,6,3,2]
lookup['F'] = lookup['f'] = [5,4,6,3]
lookup['G'] = lookup['g'] = [5,4,1,2,3]
lookup['H'] = lookup['h'] = [4,3,6,1]
lookup['I'] = lookup['i'] = [1]
lookup['J'] = lookup['j'] = [0,1,2,3]
lookup['K'] = lookup['k'] = [3,1,6,4,5]
lookup['L'] = lookup['l'] = [4,3,2]
lookup['M'] = lookup['m'] = [3,6,1,5]
lookup['N'] = lookup['n'] = [3,6,1]
lookup['O'] = lookup['o'] = [1,2,3,6]
lookup['P'] = lookup['p'] = [3,4,5,0,6]
lookup['Q'] = lookup['q'] = [6,4,5,0,1]
lookup['R'] = lookup['r'] = [3,6]
lookup['S'] = lookup['s'] = [5,4,6,1,2]
lookup['T'] = lookup['t'] = [4,6,3,2]
lookup['U'] = lookup['u'] = [4,3,2,1,0]
lookup['V'] = lookup['v'] = [1,2,3]
lookup['W'] = lookup['w'] = [4,6,0,2]
lookup['X'] = lookup['x'] = [4,6,0,3,1]
lookup['Y'] = lookup['y'] = [4,6,0,1,2]
lookup['Z'] = lookup['z'] = [5,0,6,3,2]
lookup['-'] = [6]
green = (0, 255, 0)
# need a global in order to init neopixels first before instantiating this class
pix_per_seg = 4
def get_num_pixels(num_digits):
return pix_per_seg*7*num_digits;
class Neo7Seg:
def __init__(self, pixels, offset, num_digits):
self._pixels = pixels # the already instantiated neopixel object
self._offset = offset # the stringing offset of the first pix in the neopixel chain
self._num_digits = num_digits
self._value = "00"
self._color = green
self.clear()
def clear(self):
for d in range(self._num_digits):
for s in range(7):
for p in range (0, pix_per_seg):
self._pixels[self._offset + (d * pix_per_seg * 7) + (s * pix_per_seg) + p] = (0,0,0)
self._pixels.show()
# pixels = neopixels instantiated outside this function
# offset = the offset for the first pixel in 7seg in the entire neopixel chain
# value = character to display
# color = (r,b,g)
def set(self, value, color = green, wait = 0.5):
self._value = value
self._color = color
self.clear()
if isinstance(value, float):
val = int(value)
if val >= 100 and self._num_digits > 2:
val = 99
string = str(val).zfill(2)
elif isinstance(value, int):
if value >= 100 and self._num_digits > 2:
value = 99
string = str(value).zfill(2)
else:
string = value
c = 0
for char in string:
character = lookup[char]
for s in character:
for p in range (0, pix_per_seg):
self._pixels[self._offset + (c * pix_per_seg * 7) + (s * pix_per_seg) + p] = color
c += 1
self._pixels.show()
# if len(string) > self._num_digits:
# cycles through the characters in the string
# not a good idea to use _value to keep track of a score or something like that.
# but this is here is case the app wants to get the current state of the 7seg(s)
def get(self):
return self._value
async def rainbow_digits(self, duration_sec):
log.debug("rainbox digits")
red = (255,0,0)
orange = (255,127,0)
yellow = (255,255,0)
green = (0,255,0)
blue = (0,0,255)
teal = (0,255,255)
violet = (148,0,211)
rb = [red, orange, yellow, green, blue, teal, violet]
start = t = time.monotonic()
i = 0
while time.monotonic() <= (start + duration_sec):
for d in range(self._num_digits):
for s in range(7):
for p in range (0, pix_per_seg):
self._pixels[self._offset + (d * pix_per_seg * 7) + (s * pix_per_seg) + p] = rb[(i + s) % 7]
i += 1
self._pixels.show()
await asyncio.sleep(0.05)
# restore previous setting after animation is done.
self.set(self._value, self._color)