This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "DigiKeyboard.h" | |
// Teclas universais (códigos HID) | |
#define KEY_MINUS 45 | |
#define KEY_SLASH 56 | |
#define KEY_SPACE 44 | |
#define KEY_COLON 33 // Shift + ; | |
#define KEY_TAB 43 | |
//#define KEY_SLASH 0x38 // Código físico para tecla '/' | |
#define KEY_BACKSLASH 0x31 |