-
Notifications
You must be signed in to change notification settings - Fork 23
Description
First off, great project, In the rio-server/firmware/rpi/lowlevel-server.py you currently have...
LED strip configuration:
LED_COUNT = 1020 # Number of LED pixels.
LED_PIN = 18 # GPIO pin connected to the pixels (must support PWM!).
LED_FREQ_HZ = 800000 # LED signal frequency in hertz (usually 800khz)
LED_DMA = 5 # DMA channel to use for generating signal (try 5)
LED_BRIGHTNESS = 32 # Set to 0 for darkest and 255 for brightest
LED_INVERT = False # True to invert the signal (when using NPN transistor level shift)
LED_CHANNEL = 0
LED_2_COUNT = 1020 # Number of LED pixels.
LED_2_PIN = 19 # GPIO pin connected to the pixels (must support PWM!).
LED_2_BRIGHTNESS = 32 # Set to 0 for darkest and 255 for brightest
LED_2_INVERT = False # True to invert the signal (when using NPN transistor level shift)
LED_2_CHANNEL = 1
Would it be possible to double or even triple the pixels by having a further 1020 coming of pin 16 and another 1020 coming off pin 17, (or some other pin) if yes then how would that code look ?
With the introduction of Raspberry pi 4 I,m imagining we can squeeze a bit more out of the project, Thanks.