Kiibohd Controller
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.

usb_keyboard.h 388B

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