(self)
| 19 | #_kbd = None |
| 20 | |
| 21 | def __init__(self): |
| 22 | Pydos_hw.KFW = True |
| 23 | self.kbd = BBQ10Keyboard(Pydos_hw.I2C(),BBQI2CDevice=Pydos_hw.I2CbbqDevice) |
| 24 | |
| 25 | self._contrl_seq = [] |
| 26 | |
| 27 | self.shift_Lock = False |
| 28 | self.shift_Mode = self.SHIFT # Default Cap lock/Long Press mode |
| 29 | |
| 30 | self.lastCmdLine = "" |
| 31 | self.commandHistory = [] |
| 32 | |
| 33 | def serial_bytes_available(self): |
| 34 | # Does the same function as supervisor.runtime.serial_bytes_available |
nothing calls this directly
no test coverage detected