Control Surface
main
MIDI Control Surface library for Arduino
|
This is an example of the ShiftRegisterOut class of the Control Surface library. It creates light effects using three 8-bit shift registers and some RGB LEDs.
Connect three daisy-chained shift registers to the SPI pins.
Connect 8 RGB LEDs (+ current limiting resistors) to the outputs of the shift registers.
Remember to connect the enable pin of the shift register to ground and the master reset pin to Vcc in order to enable it.
The order of the colors doesn't matter. You can change them in software using the ShiftRegisterOutRGB::redBit
, ShiftRegisterOutRGB::greenBit
and ShiftRegisterOutRGB::blueBit
constants.
If you wired the LEDs as RGB (red first, then green and then blue), the red bit is 0, the green bit is 1 and the blue bit is 2.
If you wired the LEDs as BGR (blue first, then green and then red), the red bit is 2, the green bit is 1 and the blue bit is 0.
Other combinations are possible as well.
This example will turn on all red LEDs one by one, then turn them off one by one, next, it will turn on and off all green LEDs in the same manner, and finally the same for the blue LEDs. This is repeated indefinitely.
Written by Pieter P, 2018-07-13
https://github.com/tttapa/Arduino-Helpers