Working terminal read

This commit is contained in:
Daniele Verducci (ZenPenguin) 2020-12-11 08:48:30 +01:00
parent adc09d52ae
commit 3c6f54862d

View File

@ -28,10 +28,9 @@ import curses
import time import time
class TerminalEmulator: class TerminalEmulator:
def __init__(self, port, baudRate, w): def __init__(self, w, ser):
w.clear() w.clear()
ser = serial.Serial(port, baudRate, timeout=0) w.move(0,0)
i = 20
while True: while True:
'''try: '''try:
# read key and write to serial port # read key and write to serial port
@ -40,11 +39,14 @@ class TerminalEmulator:
except Exception as e: except Exception as e:
# No input # No input
pass''' pass'''
# read serial port and write to curses # read serial port and write to curses
if ser.inWaiting(): if ser.inWaiting():
b = ser.read() b = ser.read(1)
w.addch(chr(b)) if ord(b) > 31:
#print(chr(b), end="") w.addch(b)
stdscr.refresh()
@ -60,12 +62,17 @@ if __name__ == '__main__':
stdscr = curses.initscr() stdscr = curses.initscr()
curses.noecho() curses.noecho()
curses.cbreak() curses.cbreak()
stdscr.idlok(True)
stdscr.scrollok(True)
try: try:
td = TerminalEmulator(args.port, args.baudrate, stdscr) ser = serial.Serial(args.port, args.baudrate, timeout=0)
td = TerminalEmulator(stdscr, ser)
except Exception as e: except Exception as e:
print(e) print(e)
finally: finally:
# Close serial
ser.close()
# Stop curses # Stop curses
curses.nocbreak() curses.nocbreak()
curses.echo() curses.echo()