private KeyboardAction DataPacketToKeyboardAction(Byte[] packet)
        {
            KeyHit type = _packetDecomposer.fetchKeyHit(packet);

            return(new KeyboardAction(_packetDecomposer.fetchKey(packet), 0, 0, type));
        }