the serial port write nothing when i launched the program nothing happen in the serial bus.
why did my for loop doesnt do anything ? please help me !
PS: it's just a simple version of my code but
int x;
void setup() {
Serial.begin(9600);
}
void loop() {
x = 0;
for (int y = 0;y == 10;y++){
x++;
Serial.print(x);
delay(200);
}
}