From e23d24550a1ead424a81e9608056d67f347473eb Mon Sep 17 00:00:00 2001 From: mattmcw Date: Mon, 13 Feb 2023 15:09:26 -0500 Subject: [PATCH] Use println not just write --- ino/softserial_mock/softserial_mock.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ino/softserial_mock/softserial_mock.ino b/ino/softserial_mock/softserial_mock.ino index 17b143d..6e175e6 100644 --- a/ino/softserial_mock/softserial_mock.ino +++ b/ino/softserial_mock/softserial_mock.ino @@ -26,6 +26,7 @@ void setup() { void loop () { if (Serial.available()) { cmdChar = (char)Serial.read(); - softSerial.write(cmdChar); + softSerial.println(cmdChar); + Serial.println(cmdChar); } } \ No newline at end of file