I have this code for an exercise in using ICs with Arduino
void writeNumberList()
{
for (int i = 0; i < 256; i++)
{
if (debug)
{
Serial.print("Writing Number ");
Serial.print(i, BIN);
Serial.print(" or ");
Serial.println(i, DEC);
}
digitalWrite(LATCH, LOW);
shiftOut(DATA, CLOCK, LSBFIRST, i);
digitalWrite(LATCH, HIGH);
delay(500);
}
} // end writeNumber List
Where do I find a description of the 'shiftOut' instruction?
Thanks