Merge branch 'main' into Add-length,-getter-and-array-replacement-for-better-list/array-like-support

pull/19/head
Blaž Rolih 2024-03-31 19:15:27 +02:00 zatwierdzone przez GitHub
commit 8f158e6390
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -337,9 +337,9 @@ class Neopixel:
cut = 8
if self.W_in_mode:
cut = 0
sm_put = self.sm.put
for pixval in self.pixels:
sm_put(pixval, cut)
self.sm.put(self.pixels, cut)
time.sleep(self.delay)
def fill(self, rgb_w, how_bright=None):