mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-07-13 06:43:07 -04:00
Fix up via keymap builds. (#20383)
* Fix up via keymap builds. - Usages of old IS_PRESSED. * Fix up bad code. * Fix up bad code.
This commit is contained in:
parent
6b3fa0f655
commit
70d7874ba9
12 changed files with 71 additions and 71 deletions
|
@ -75,25 +75,25 @@ keyevent_t encoder2_cw = {
|
|||
};
|
||||
|
||||
void matrix_scan_user(void) {
|
||||
if (IS_PRESSED(encoder1_ccw)) {
|
||||
if (encoder1_ccw.pressed) {
|
||||
encoder1_ccw.pressed = false;
|
||||
encoder1_ccw.time = timer_read();
|
||||
action_exec(encoder1_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder1_cw)) {
|
||||
if (encoder1_cw.pressed) {
|
||||
encoder1_cw.pressed = false;
|
||||
encoder1_cw.time = timer_read();
|
||||
action_exec(encoder1_cw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder2_ccw)) {
|
||||
if (encoder2_ccw.pressed) {
|
||||
encoder2_ccw.pressed = false;
|
||||
encoder2_ccw.time = timer_read();
|
||||
action_exec(encoder2_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder2_cw)) {
|
||||
if (encoder2_cw.pressed) {
|
||||
encoder2_cw.pressed = false;
|
||||
encoder2_cw.time = timer_read();
|
||||
action_exec(encoder2_cw);
|
||||
|
|
|
@ -67,25 +67,25 @@ keyevent_t encoder2_cw = {
|
|||
};
|
||||
|
||||
void matrix_scan_user(void) {
|
||||
if (IS_PRESSED(encoder1_ccw)) {
|
||||
if (encoder1_ccw.pressed) {
|
||||
encoder1_ccw.pressed = false;
|
||||
encoder1_ccw.time = timer_read();
|
||||
action_exec(encoder1_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder1_cw)) {
|
||||
if (encoder1_cw.pressed) {
|
||||
encoder1_cw.pressed = false;
|
||||
encoder1_cw.time = timer_read();
|
||||
action_exec(encoder1_cw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder2_ccw)) {
|
||||
if (encoder2_ccw.pressed) {
|
||||
encoder2_ccw.pressed = false;
|
||||
encoder2_ccw.time = timer_read();
|
||||
action_exec(encoder2_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder2_cw)) {
|
||||
if (encoder2_cw.pressed) {
|
||||
encoder2_cw.pressed = false;
|
||||
encoder2_cw.time = timer_read();
|
||||
action_exec(encoder2_cw);
|
||||
|
|
|
@ -130,49 +130,49 @@ keyevent_t encoder4_cw = {
|
|||
|
||||
|
||||
void matrix_scan_user(void) {
|
||||
if (IS_PRESSED(encoder1_ccw)) {
|
||||
if (encoder1_ccw.pressed) {
|
||||
encoder1_ccw.pressed = false;
|
||||
encoder1_ccw.time = timer_read();
|
||||
action_exec(encoder1_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder1_cw)) {
|
||||
if (encoder1_cw.pressed) {
|
||||
encoder1_cw.pressed = false;
|
||||
encoder1_cw.time = timer_read();
|
||||
action_exec(encoder1_cw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder2_ccw)) {
|
||||
if (encoder2_ccw.pressed) {
|
||||
encoder2_ccw.pressed = false;
|
||||
encoder2_ccw.time = timer_read();
|
||||
action_exec(encoder2_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder2_cw)) {
|
||||
if (encoder2_cw.pressed) {
|
||||
encoder2_cw.pressed = false;
|
||||
encoder2_cw.time = timer_read();
|
||||
action_exec(encoder2_cw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder3_ccw)) {
|
||||
if (encoder3_ccw.pressed) {
|
||||
encoder3_ccw.pressed = false;
|
||||
encoder3_ccw.time = timer_read();
|
||||
action_exec(encoder3_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder3_cw)) {
|
||||
if (encoder3_cw.pressed) {
|
||||
encoder3_cw.pressed = false;
|
||||
encoder3_cw.time = timer_read();
|
||||
action_exec(encoder3_cw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder4_ccw)) {
|
||||
if (encoder4_ccw.pressed) {
|
||||
encoder4_ccw.pressed = false;
|
||||
encoder4_ccw.time = timer_read();
|
||||
action_exec(encoder4_ccw);
|
||||
}
|
||||
|
||||
if (IS_PRESSED(encoder4_cw)) {
|
||||
if (encoder4_cw.pressed) {
|
||||
encoder4_cw.pressed = false;
|
||||
encoder4_cw.time = timer_read();
|
||||
action_exec(encoder4_cw);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue