Max Carlson 2024-02-07 16:15:35 +02:00
rodzic 8c76ff6657
commit 16026e5d88
1 zmienionych plików z 1 dodań i 12 usunięć

Wyświetl plik

@ -249,7 +249,6 @@ class Neopixel:
npix[15:21] = (255,0,0) # <- sets 16,17 .. 20 to red
npix[21:29:2] = (0,0,255) # <- sets 21,23,25,27 to blue
npix[1::2] = (0,0,0) # <- sets all odd pixels to 'off'
npix[:] = [(0,5,0),(0,5,0)] # <- replaces all pixels with those from the array
(the 'slice' cases pass idx as a 'slice' object, and
set_pixel processes the slice)
@ -257,17 +256,7 @@ class Neopixel:
:param rgb_w: Tuple of form (r, g, b) or (r, g, b, w) representing color to be used
:return:
"""
if type(rgb_w) is list:
for i in range(self.num_leds):
self.set_pixel(i, rgb_w[i])
else:
self.set_pixel(idx, rgb_w)
def __len__(self):
return self.num_leds
def __getitem__(self, idx):
return self.get_pixel(idx)
self.set_pixel(idx, rgb_w)
def colorHSV(self, hue, sat, val):
"""