From 332b5ceec3963a5ecbf123865698d824d1eedc43 Mon Sep 17 00:00:00 2001 From: dakkar Date: Fri, 15 Feb 2019 15:13:07 +0000 Subject: probably simpler: use LEDMode --- combos.h | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'combos.h') diff --git a/combos.h b/combos.h index 242e274..38d455c 100644 --- a/combos.h +++ b/combos.h @@ -3,31 +3,18 @@ #include "kaleidoscope/plugin/MagicCombo.h" #include "kaleidoscope/plugin/USB-Quirks.h" -#include "color-picker.h" enum { // Toggle between Boot (6-key rollover; for BIOSes and early boot) and NKRO // mode. - COMBO_TOGGLE_NKRO_MODE, - COMBO_TOGGLE_COLOR_PICKER + COMBO_TOGGLE_NKRO_MODE }; static void toggleKeyboardProtocol(uint8_t combo_index) { USBQuirks.toggleKeyboardProtocol(); } -static void toggleColorPicker(uint8_t combo_index) { - theColorPicker.toggle(); -} - -USE_MAGIC_COMBOS( - { - .action = toggleKeyboardProtocol, +USE_MAGIC_COMBOS({.action = toggleKeyboardProtocol, // Left Fn + Esc + Shift .keys = { R3C6, R2C6, R3C7 } - }, - { - .action = toggleColorPicker, - // Left Fn + Right Fn - .keys = { R3C6, R3C9 } }); -- cgit v1.2.3