diff options
author | Devaev Maxim <[email protected]> | 2020-08-12 12:39:04 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-08-12 12:39:04 +0300 |
commit | 37b3ac74d55d18d76d2a2c51bfb2ffcf031c2927 (patch) | |
tree | 1bccaad4284d6f5b8a1c84877eec7edaac2c4ed2 /hid/src/ps2/hid.h | |
parent | 9ee24e5cf46ed7aebd2b6acbd33943e132b74d6f (diff) |
mixed mode for arduino hid
Diffstat (limited to 'hid/src/ps2/hid.h')
-rw-r--r-- | hid/src/ps2/hid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hid/src/ps2/hid.h b/hid/src/ps2/hid.h index d7057c03..d12a16e4 100644 --- a/hid/src/ps2/hid.h +++ b/hid/src/ps2/hid.h @@ -33,11 +33,11 @@ // #define PS2_KBD_DATA_PIN 5 -class Ps2Hid { +class Ps2HidKeyboard { // https://wiki.osdev.org/PS/2_Keyboard public: - Ps2Hid() : _dev(PS2_KBD_CLOCK_PIN, PS2_KBD_DATA_PIN) {} + Ps2HidKeyboard() : _dev(PS2_KBD_CLOCK_PIN, PS2_KBD_DATA_PIN) {} void begin() { _dev.keyboard_init(); |