Fixed wiring so just try write

This commit is contained in:
Matt McWilliams 2023-02-13 15:28:21 -05:00
parent e23d24550a
commit 0c02830da8
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ void setup() {
void loop () {
if (Serial.available()) {
cmdChar = (char)Serial.read();
softSerial.println(cmdChar);
softSerial.write(cmdChar);
Serial.println(cmdChar);
}
}