Skip to content

Commit ba91408

Browse files
authored
Remove 400khz flag from neopixel_write to work with CircuitPython 0.9.0 API change.
CircuitPython 0.9.0 removed this bool for SAMD21 port to save space. Updating library to conform. NOTE this _requires_ using the latest 0.9.0 release to make NeoPixels work!
1 parent d945124 commit ba91408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neopixel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ def fill(self, color):
3434
self[i] = color
3535

3636
def write(self):
37-
neopixel_write(self.pin, self.buf, True)
37+
neopixel_write(self.pin, self.buf)

0 commit comments

Comments
 (0)