WIP reading from terminal
This commit is contained in:
parent
f5972c72f8
commit
3c27a72bdf
@ -32,13 +32,15 @@ class TerminalEmulator:
|
|||||||
w.clear()
|
w.clear()
|
||||||
w.move(0,0)
|
w.move(0,0)
|
||||||
while True:
|
while True:
|
||||||
'''try:
|
try:
|
||||||
# read key and write to serial port
|
# read key and write to serial port
|
||||||
key = w.getkey()
|
key = w.get_wch() # TODO: Mettere no delay mode
|
||||||
|
if key == 10 or (key > 31 and key < 256):
|
||||||
|
# Is a character
|
||||||
ser.write(key)
|
ser.write(key)
|
||||||
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():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user