summaryrefslogtreecommitdiffstats
path: root/tinyusb/lib
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-08-11 01:08:46 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-08-11 01:08:46 -0400
commit7caa6ff19ad6913481c139b89099f8c07966d000 (patch)
tree338a024993b336c249a7c33436e97a160e5a677b /tinyusb/lib
parent1ab1d3fff2c4eb5b0ad52ae8001a39d1d023eb9c (diff)
downloadSensor-Watch-7caa6ff19ad6913481c139b89099f8c07966d000.tar.gz
Sensor-Watch-7caa6ff19ad6913481c139b89099f8c07966d000.tar.bz2
Sensor-Watch-7caa6ff19ad6913481c139b89099f8c07966d000.zip
document power consumption, etc
Diffstat (limited to 'tinyusb/lib')
0 files changed, 0 insertions, 0 deletions
ef='#n151'>151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
# Basic Keycodes

The basic set of keycodes are based on the [HID Keyboard/Keypad Usage Page (0x07)](https://www.usb.org/sites/default/files/documents/hut1_12v2.pdf) with the exception of `KC_NO`, `KC_TRNS` and keycodes in the `0xA5-DF` range. See below for more details.

## Letters and Numbers

|Key   |Description|
|------|-----------|
|`KC_A`|`a` and `A`|
|`KC_B`|`b` and `B`|
|`KC_C`|`c` and `C`|
|`KC_D`|`d` and `D`|
|`KC_E`|`e` and `E`|
|`KC_F`|`f` and `F`|
|`KC_G`|`g` and `G`|
|`KC_H`|`h` and `H`|
|`KC_I`|`i` and `I`|
|`KC_J`|`j` and `J`|
|`KC_K`|`k` and `K`|
|`KC_L`|`l` and `L`|
|`KC_M`|`m` and `M`|
|`KC_N`|`n` and `N`|
|`KC_O`|`o` and `O`|
|`KC_P`|`p` and `P`|
|`KC_Q`|`q` and `Q`|
|`KC_R`|`r` and `R`|
|`KC_S`|`s` and `S`|
|`KC_T`|`t` and `T`|
|`KC_U`|`u` and `U`|
|`KC_V`|`v` and `V`|
|`KC_W`|`w` and `W`|
|`KC_X`|`x` and `X`|
|`KC_Y`|`y` and `Y`|
|`KC_Z`|`z` and `Z`|
|`KC_1`|`1` and `!`|