Skip to content

Commit 43e7484

Browse files
committed
Notes update and clean up
1 parent 913f041 commit 43e7484

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

QMK/Source/Keymaps/keymap_modified v2.c

+1-17
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// • Layer cycling via encoder rotation
77
// • Layer advancing via encoder single-tap
88
// • RGB LED toggle on/off via encoder double-tap
9+
// • Restructured layout and code organization
910
// • Expanded new line and tab formatting
1011
// • Comments
1112
// Rename this file as 'keymap.c' prior to compiling
@@ -146,26 +147,9 @@ void dance_cln_finished(qk_tap_dance_state_t *state, void *user_data)
146147
}
147148
}
148149

149-
/*// Tap Dance reset method
150-
void dance_cln_reset(qk_tap_dance_state_t *state, void *user_data)
151-
{
152-
if (state->count == 1)
153-
{
154-
///unregister_code16(KC_X);
155-
}
156-
else
157-
{
158-
unregister_code(KC_Y);
159-
///unregister_code16(RGB_TOG);
160-
///unregister_code(RGB_TOG);
161-
}
162-
}*/
163-
164150
// Tap Dance definitions
165151
qk_tap_dance_action_t tap_dance_actions[] =
166152
{
167-
///[TD_TEST1] = ACTION_TAP_DANCE_DOUBLE(KC_O, KC_P), // Tap once for O, twice for P
168-
///[TD_TEST2] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_cln_finished, NULL),
169153
[TD_NextLayer_ToggleLED] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_cln_finished, NULL)
170154
};
171155

0 commit comments

Comments
 (0)