Hi my friends and I are currently working on a project for a college assignment. The project involves the use of 16 RGB LEDs in a 4 x 4 matrix. We are sending 16 bytes from MaxMSP which will hopefully control the colour of the lights and be able to turn them on and off etc. For some reason though the code isnt working at all. Can someone help us please? The code is attached:
//Pin connected to ST_CP of 74HC595
int latchPin = 8;
//Pin connected to SH_CP of 74HC595
int clockPin = 12;
////Pin connected to DS of 74HC595
int dataPin = 11;
//holders for infromation you're going to pass to shifting function
byte data1;
byte dataArray1[20];
void setup()
{
//set pins to output because they are addressed in the main loop
pinMode(latchPin, OUTPUT);
Serial.begin(9600);
}
void loop()
{
if (Serial.available() >= 17)
{
//check for start bit
//if incoming byte is 'a' then store all other bytes
if (byte( Serial.read() ) == 'a') // 97 in int form
{
dataArray1[0] = Serial.read();
dataArray1[1] = Serial.read();
dataArray1[2] = Serial.read();
dataArray1[3] = Serial.read();
dataArray1[4] = Serial.read();
dataArray1[5] = Serial.read();
dataArray1[6] = Serial.read();
dataArray1[7] = Serial.read();
dataArray1[8] = Serial.read();
dataArray1[9] = Serial.read();
dataArray1[10] = Serial.read();
dataArray1[11] = Serial.read();
dataArray1[12] = Serial.read();
dataArray1[13] = Serial.read();
dataArray1[14] = Serial.read();
dataArray1[15] = Serial.read();
}
}
for (int j = 0; j < 16; j++)
{
//load the light sequence you want from array
data1 = dataArray1[j];
//ground latchPin and hold low for as long as you are transmitting
digitalWrite(latchPin, 0);
//move 'em out
shiftOut(dataPin, clockPin, data1);
// shiftOut(dataPin, clockPin, data2);
//return the latch pin high to signal chip that it
//no longer needs to listen for information
digitalWrite(latchPin, 1);
delay(100);
}
}
// the heart of the program
void shiftOut(int myDataPin, int myClockPin, byte myDataOut)
{
// This shifts 8 bits out MSB first,
// on the rising edge of the clock,
// clock idles low
//internal function setup
int i=0;
int pinState;
pinMode(myClockPin, OUTPUT);
pinMode(myDataPin, OUTPUT);
//clear everything out just in case to
//prepare shift register for bit shifting
digitalWrite(myDataPin, 0);
digitalWrite(myClockPin, 0);
//for each bit in the byte myDataOut?
//NOTICE THAT WE ARE COUNTING DOWN in our for loop
//This means that %00000001 or "1" will go through such
//that it will be pin Q0 that lights.
for (i=7; i >= 0; i--)
{
digitalWrite(myClockPin, 0);
//if the value passed to myDataOut and a bitmask result
// true then... so if we are at i=6 and our value is
// %11010100 it would the code compares it to %01000000
// and proceeds to set pinState to 1.
if ( myDataOut & (1<<i) )
{
pinState= 1;
}
else
{
pinState= 0;
}
//Sets the pin to HIGH or LOW depending on pinState
digitalWrite(myDataPin, pinState);
//register shifts bits on upstroke of clock pin
digitalWrite(myClockPin, 1);
//zero the data pin after shift to prevent bleed through
digitalWrite(myDataPin, 0);
}
//stop shifting
digitalWrite(myClockPin, 0);
}