a) please use code tags.
b) what are the error messages shown when you try to upload or ‘run’ this code ?
c) is the serial monitor open at the correct speed ?
int i;
void setup() {
Serial.begin(9600);
i=0;
for (i = 0; i < 10; i++) {
Serial.print("i = ");
Serial.println(i);
}
}
void loop() {
}
Pressed the reset and its working, don't know why.
Will try to run my big sketch again, that is what got me to this point in the first place. It would not run so I had to go back to the basics with this trial sketch. Tried both FOR and WHILE with no luck.