Kiibohd Controller
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

12345678910111213141516
  1. #ifndef usb_serial_h__
  2. #define usb_serial_h__
  3. #include <stdint.h>
  4. void usb_init(void); // initialize everything
  5. uint8_t usb_configured(void); // is the USB port configured
  6. int8_t usb_keyboard_press(uint8_t key, uint8_t modifier);
  7. int8_t usb_keyboard_send(void);
  8. extern uint8_t keyboard_modifier_keys;
  9. extern uint8_t keyboard_keys[6];
  10. extern volatile uint8_t keyboard_leds;
  11. #endif