Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rotary encoder function for Voice65 #14316

Merged
merged 2 commits into from
Sep 5, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Ryan <fauxpark@gmail.com>
  • Loading branch information
str-dst and fauxpark authored Sep 5, 2021
commit 17b240412da33419f14ba81bdc03b081452d2a53
6 changes: 3 additions & 3 deletions keyboards/owlab/voice65/hotswap/hotswap.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ void rgb_matrix_indicators_user(void)
}

enum encoder_modes{
ENCODER_MODE_ONE = 0,
ENCODER_MODE_TWO = 1,
ENCODER_MODE_THREE = 2,
ENCODER_MODE_ONE,
ENCODER_MODE_TWO,
ENCODER_MODE_THREE
};

keyboard_config_t keyboard_config;
Expand Down
6 changes: 3 additions & 3 deletions keyboards/owlab/voice65/soldered/soldered.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ void rgb_matrix_indicators_user(void)
}

enum encoder_modes{
ENCODER_MODE_ONE = 0,
ENCODER_MODE_TWO = 1,
ENCODER_MODE_THREE = 2,
ENCODER_MODE_ONE,
ENCODER_MODE_TWO,
ENCODER_MODE_THREE
};

keyboard_config_t keyboard_config;
Expand Down