Use println not just write

This commit is contained in:
Matt McWilliams 2023-02-13 15:09:26 -05:00
parent 3b04d10290
commit e23d24550a
1 changed files with 2 additions and 1 deletions

View File

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