using HID-Project library

This commit is contained in:
Devaev Maxim
2018-07-11 05:29:30 +00:00
parent 157828997a
commit c6b6e54875
11 changed files with 375 additions and 54 deletions

View File

@@ -1,35 +1,44 @@
#include <Arduino.h>
#include <Keyboard.h>
#include <HID-Project.h>
#include "inline.h"
#include "keymap.h"
#define CMD_SERIAL Serial1
#define SERIAL_SPEED 115200
#define CMD_SERIAL_SPEED 115200
#define INLINE inline __attribute__((always_inline))
INLINE void cmdResetHid() {
CMD_SERIAL.read(); // unused now
CMD_SERIAL.read(); // unused now
CMD_SERIAL.read(); // unused now
Keyboard.releaseAll();
}
INLINE void cmdKeyEvent() {
uint8_t state = Serial.read();
uint8_t key = Serial.read();
if (state) {
Keyboard.press(key);
} else {
Keyboard.release(key);
uint8_t state = CMD_SERIAL.read();
uint8_t code = keymap(CMD_SERIAL.read());
CMD_SERIAL.read(); // unused now
if (code) {
if (state) {
Keyboard.press(code);
} else {
Keyboard.release(code);
}
}
}
void setup() {
CMD_SERIAL.begin(SERIAL_SPEED);
CMD_SERIAL.begin(CMD_SERIAL_SPEED);
Keyboard.begin();
}
void loop() {
while (true) { // fast
switch (Serial.read()) {
if (CMD_SERIAL.available() >= 4) {
switch ((uint8_t)CMD_SERIAL.read()) {
case 0: cmdResetHid(); break;
case 1: cmdKeyEvent(); break;
default: break;