diff --git a/micropython/usb/usb-device-keyboard/manifest.py b/micropython/usb/usb-device-keyboard/manifest.py index 923535c4c..5a2ff307d 100644 --- a/micropython/usb/usb-device-keyboard/manifest.py +++ b/micropython/usb/usb-device-keyboard/manifest.py @@ -1,3 +1,3 @@ -metadata(version="0.1.0") +metadata(version="0.1.1") require("usb-device-hid") package("usb") diff --git a/micropython/usb/usb-device-keyboard/usb/device/keyboard.py b/micropython/usb/usb-device-keyboard/usb/device/keyboard.py index c42405fc4..22091c50b 100644 --- a/micropython/usb/usb-device-keyboard/usb/device/keyboard.py +++ b/micropython/usb/usb-device-keyboard/usb/device/keyboard.py @@ -163,9 +163,9 @@ class KeyCode: CLOSE_BRACKET = 48 # ] } BACKSLASH = 49 # \ | HASH = 50 # # ~ - COLON = 51 # ; : + SEMICOLON = 51 # ; : QUOTE = 52 # ' " - TILDE = 53 # ` ~ + GRAVE = 53 # ` ~ COMMA = 54 # , < DOT = 55 # . > SLASH = 56 # / ?