This commit is contained in:
Sergio Pernas 2022-08-23 22:50:52 -03:00
parent ed27e9a67e
commit d7ee7c5447
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ void loop() {
if ( Serial.available() > 0) {
inQuery = Serial.read();
if ( inQuery == devID) {
Serial.write(inQuery);
Serial.write("1");
}

View file

@ -16,7 +16,7 @@ void loop() {
if ( Serial.available() > 0) {
inQuery = Serial.read();
if ( inQuery == devID) {
Serial.write(inQuery);
Serial.write("2");
}