From 9957fca651fd3f79e9eef749af79d60e71b34e3f Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Tue, 25 Jul 2017 14:42:07 -0700 Subject: [PATCH] Update to new hid facade --- src/Kaleidoscope/TapDance.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Kaleidoscope/TapDance.cpp b/src/Kaleidoscope/TapDance.cpp index 9657cc70..f084d4ff 100644 --- a/src/Kaleidoscope/TapDance.cpp +++ b/src/Kaleidoscope/TapDance.cpp @@ -17,6 +17,7 @@ */ #include +#include namespace kaleidoscope { @@ -117,7 +118,7 @@ void TapDance::actionKeys(uint8_t tap_count, ActionType tap_dance_action, uint8_ handleKeyswitchEvent(key, last_tap_dance_row_, last_tap_dance_col_, IS_PRESSED | WAS_PRESSED | INJECTED); break; case Release: - Keyboard.sendReport(); + hid::sendKeyboardReport(); handleKeyswitchEvent(key, last_tap_dance_row_, last_tap_dance_col_, WAS_PRESSED | INJECTED); break; }