I'm trying to name shift register pin 1 to pRow1 and be able to turn it on and off with this name, instead of referring to it by it's pin number each time.
Right now, I can get it to turn on when I write:
setRegisterPin(1, HIGH);
but I want to be able to write
digitalwrite(pRow1, HIGH);
Is what I want to do possible? and if so, how do I make it happen?