Removed useless input from buttonreader.py
This commit is contained in:
parent
3be71f4b80
commit
8120b51d01
|
@ -47,9 +47,6 @@ class BaseInput(QtCore.QThread):
|
||||||
#print("player %d can answer now" % playerNo)
|
#print("player %d can answer now" % playerNo)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
class SerialThread(QtCore.QThread):
|
|
||||||
dataReady = QtCore.Signal(str)
|
|
||||||
|
|
||||||
class SerialInput(BaseInput):
|
class SerialInput(BaseInput):
|
||||||
def __init__(self, app, device, baudrate=9600, bytesize=8, parity='N', stopbits=1):
|
def __init__(self, app, device, baudrate=9600, bytesize=8, parity='N', stopbits=1):
|
||||||
super(SerialInput, self).__init__(app)
|
super(SerialInput, self).__init__(app)
|
||||||
|
|
Loading…
Reference in New Issue