Use println not just write
This commit is contained in:
parent
3b04d10290
commit
e23d24550a
|
@ -26,6 +26,7 @@ void setup() {
|
|||
void loop () {
|
||||
if (Serial.available()) {
|
||||
cmdChar = (char)Serial.read();
|
||||
softSerial.write(cmdChar);
|
||||
softSerial.println(cmdChar);
|
||||
Serial.println(cmdChar);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue