Adding clear function and removing delay from fill

pull/5/head
Mathemmagician 2022-03-06 16:48:23 -05:00
rodzic cfc38951dc
commit 9754b84d20
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -197,4 +197,7 @@ class Neopixel:
def fill(self, rgb_w, how_bright = None):
for i in range(self.num_leds):
self.set_pixel(i, rgb_w, how_bright)
time.sleep(self.delay)
# Clear the strip
def clear(self):
self.pixels = array.array("I", [0 for _ in range(self.num_leds)])