Hey I am working on a school project and I want to test if it is working or not, it's not a big code for now.
I am trying to make a kind of Tetris on the arduino but I have to get to there with small steps. For some reason I get the Exit status 1 error and I don't know why. Can somebody help me?
This is the code (in Dutch)
//Zeggen welke pin bij wat hoort.
int Data = 2;
int Store = 3;
int Shift = 4;
int Links = 5;
int Rechts = 6;
void setup() {
//zeggen wat een input en wat een output is.
pinMode(Data, OUTPUT);
pinMode(Store, OUTPUT);
pinMode(Shift. OUTPUT);
pinMode(Links, INPUT);
pinMode(Rechts. INPUT);
}
void loop() {
pinMode(Data, HIGH);
pinMode(Rechts, LOW);
delayMicroseconds(10);
pinMode(Shift, HIGH);
delayMicroseconds(10);
pinMode(Shift, LOW);
}