24 @param timeout timout in milliseconds to be set |
24 @param timeout timout in milliseconds to be set |
25 @type int |
25 @type int |
26 @param parent reference to the parent object |
26 @param parent reference to the parent object |
27 @type QObject |
27 @type QObject |
28 """ |
28 """ |
29 super(MicroPythonSerialPort, self).__init__(parent) |
29 super().__init__(parent) |
30 |
30 |
31 self.__connected = False |
31 self.__connected = False |
32 self.__timeout = timeout # 10s default timeout |
32 self.__timeout = timeout # 10s default timeout |
33 self.__timedOut = False |
33 self.__timedOut = False |
34 |
34 |