int dataPin = 2;
int clockPin = 3;
int latchPin = 4;
void setup() {
// put your setup code here, to run once:
pinMode(dataPin, OUTPUT);
pinMode(clockPin, OUTPUT);
pinMode(latchPin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
}