Skip to content

Commit

Permalink
Remove 400khz flag from neopixel_write to work with CircuitPython 0.9…
Browse files Browse the repository at this point in the history
….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!
  • Loading branch information
tdicola authored Feb 27, 2017
1 parent d945124 commit ba91408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neopixel.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ def fill(self, color):
self[i] = color

def write(self):
neopixel_write(self.pin, self.buf, True)
neopixel_write(self.pin, self.buf)

0 comments on commit ba91408

Please sign in to comment.