Evening Folks
I'm a tad green on the programming side and i'm just starting to break into using Shift Registers to control a larger set of outputs
perhaps someone can help me find the missing gap between what i know and what i need to know
My current use & understanding when im programming an output is as follows
i want to turn an LED on so:
pinMode(13, OUTPUT);
and then in the main loop:
digitalWrite(13, HIGH);
so now for example i have my shift register with my 8 (or 16 or 32 depending on how many are chained) how do go about making the following happen
turn on led 1,2,3,4,5
make LED 6 Flicker
Make LED 7 Pulse
the gap in my knowledge is that i don't know what i need to learn to get to the next stage all i've seen on shift register tutorials is nice flashing patterns programmatically made i.e. turn on LED then move it to the next LED and strobe around the run
I'm interested in using the shift register pins as sold on or off outputs with addresses i can control (using for an art instillation where say 20/30 LEDs will be on solid and a few of them will do various things depending on where i put them)
hopefully someone can make sense of my request and point me in the right direction !
thanks !!