()
| 60 | public boolean shiftPressed = false; |
| 61 | |
| 62 | public static void clearStrobe() { |
| 63 | currentKey = (byte) (currentKey & 0x07f); |
| 64 | } |
| 65 | |
| 66 | public static void pressKey(byte key) { |
| 67 | currentKey = (byte) (0x0ff & (0x080 | key)); |
no outgoing calls
no test coverage detected