From 3c27a72bdf7cb9739dd60cf7c88101a62cd0453c Mon Sep 17 00:00:00 2001 From: "Daniele Verducci (ZenPenguin)" Date: Fri, 11 Dec 2020 08:58:21 +0100 Subject: [PATCH] WIP reading from terminal --- python/terminal_emulator.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/python/terminal_emulator.py b/python/terminal_emulator.py index 93ca88f..92297ce 100755 --- a/python/terminal_emulator.py +++ b/python/terminal_emulator.py @@ -32,13 +32,15 @@ class TerminalEmulator: w.clear() w.move(0,0) while True: - '''try: + try: # read key and write to serial port - key = w.getkey() - ser.write(key) + key = w.get_wch() # TODO: Mettere no delay mode + if key == 10 or (key > 31 and key < 256): + # Is a character + ser.write(key) except Exception as e: # No input - pass''' + pass # read serial port and write to curses if ser.inWaiting():