Skip to content

Commit

Permalink
Fix the default DMA in python code (#266)
Browse files Browse the repository at this point in the history
DMA 5 causes file system errors on PI 3
  • Loading branch information
grantramsay authored and jgarff committed Mar 6, 2018
1 parent 3a01777 commit 09aec6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/neopixel.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ def __setitem__(self, pos, value):


class Adafruit_NeoPixel(object):
def __init__(self, num, pin, freq_hz=800000, dma=5, invert=False,
def __init__(self, num, pin, freq_hz=800000, dma=10, invert=False,
brightness=255, channel=0, strip_type=ws.WS2811_STRIP_RGB):
"""Class to represent a NeoPixel/WS281x LED display. Num should be the
number of pixels in the display, and pin should be the GPIO pin connected
to the display signal line (must be a PWM pin like 18!). Optional
parameters are freq, the frequency of the display signal in hertz (default
800khz), dma, the DMA channel to use (default 5), invert, a boolean
800khz), dma, the DMA channel to use (default 10), invert, a boolean
specifying if the signal line should be inverted (default False), and
channel, the PWM channel to use (defaults to 0).
"""
Expand Down

0 comments on commit 09aec6b

Please sign in to comment.