void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
int x = 0;
int y = 1;
int fem = 0;
fem = x + y;
Serial.println(fem);
x = fem;
delay(500);
}
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
int x = 0;
int y = 1;
int fem = 0;
fem = x + y;
Serial.println(fem);
x = fem;
delay(500);
}