int datos = 0;
void setup() {
Serial.begin(9600);
// Se define como com 2.
}
void loop() {
// put your main code here, to run repeatedly:
datos = Serial.parseInt();
Serial.print(datos);
delay(1000);
}
int datos = 0;
void setup() {
Serial.begin(9600);
// Se define como com 2.
}
void loop() {
// put your main code here, to run repeatedly:
datos = Serial.parseInt();
Serial.print(datos);
delay(1000);
}