const int dataPin=14;
const int latchPin=12;
const int clockPin=13;
int six[8]={0,1,0,0,0,0,0,1};
void setup() {
// put your setup code here, to run once:
pinMode(dataPin, OUTPUT);
pinMode(latchPin, OUTPUT);
pinMode(clockPin, OUTPUT);
digitalWrite(latchPin,LOW);
digitalWrite(clockPin,LOW);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}