-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotmatrix.py
61 lines (48 loc) · 1.71 KB
/
dotmatrix.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
import machine
from neopixel import NeoPixel
import time
class PixelColors:
"""Common Colors Enum class for DotMatrix"""
RED = (20,0,0)
GREEN = (0,20,0)
BLUE = (0,0,20)
WHITE = (20,20,20)
CLEAR = (0,0,0)
class DotMatrix:
"""Driver for CJMCU 8x8 WS2812 LED Matrix
:param width: number of leds in a row
:param height: number of leds in a column
:param do: digital out pin
:param initial_color: initial color to fill matrix with"""
def __init__(self, width=8, height=8, do=3, initial_color=None):
"""Initializes DotMatrix object at pin 'do'"""
self._width = width
self._height = height
self._neopixel = NeoPixel(machine.Pin(do), width * height)
if initial_color is not None:
self.fill(initial_color)
def fill(self, color) -> None:
"""Set all leds in matrix to 'color'"""
if color is None:
print('Color not provided!')
else:
self._neopixel.fill(color)
self._neopixel.write()
def clear(self) -> None:
"""Set all lEDs in matrix to 'Pixelcolors.CLEAR'"""
self.fill(PixelColors.CLEAR)
self._neopixel.write()
def setPixel(self, x, y, color):
"""Set lED at (x,y) in matrix to (0,0,0)"""
if color is None:
print('Color not provided!')
else:
self._neopixel[(8 * y) + x] = color
self._neopixel.write()
def __setitem__(self, idx, item):
"""Set individual LED in matrix as array"""
self._neopixel[idx] = item
self._neopixel.write()
def __getitem__(self, idx) -> tuple:
"""Get individual LED in matrix as array"""
return self._neopixel[idx]