Simon Prickett 2024-04-03 19:24:34 +07:00 zatwierdzone przez GitHub
commit 54bf8d8906
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -73,3 +73,13 @@ class Matrix(ATOM):
# WS2812 number: 25
def __init__(self):
super(Matrix, self).__init__(np_n=25)
def set_pixel_color_x_y(self, x, y, r, g, b):
if (0 <= x < 5) and (0 <= y < 5):
n = (y * 5) + x
self.set_pixel_color(n, r, g, b)
def get_pixel_color_x_y(self, x, y):
if (0 <= x < 5) and (0 <= y < 5):
n = (y * 5) + x
return self.get_pixel_color(n)