From f5972c72f8378480d43dcede10decfd44112cac6 Mon Sep 17 00:00:00 2001 From: "Daniele Verducci (ZenPenguin)" Date: Fri, 11 Dec 2020 08:52:16 +0100 Subject: [PATCH] Fixed line feed --- python/terminal_emulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/terminal_emulator.py b/python/terminal_emulator.py index 6a0399d..93ca88f 100755 --- a/python/terminal_emulator.py +++ b/python/terminal_emulator.py @@ -43,7 +43,7 @@ class TerminalEmulator: # read serial port and write to curses if ser.inWaiting(): b = ser.read(1) - if ord(b) > 31: + if ord(b) > 31 or ord(b) == 10: w.addch(b) stdscr.refresh()