This commit is contained in:
Felix Jen 2023-01-28 14:33:11 -06:00
parent 2c736f08dd
commit 3d53b360e1
No known key found for this signature in database
GPG Key ID: 4E7AA63CBBCE400E
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ enum layers {
_LAYER3
};
enum custom_keycodeas {
enum custom_keycodes { // Define keycodes for MIDI usage of the volume knob
A_CW = USER00,
A_CCW
};
@ -84,7 +84,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case A_CW:
if (record->event.pressed) {
midi_send_cc(&midi_device, midi_config.channel, 89, 1);
midi_send_cc(&midi_device, midi_config.channel, 89, 1);
}
return true;
case A_CCW:

View File

@ -108,7 +108,7 @@ void slider(void) {
uint8_t current_val = analogReadPin(SLIDER_PINA) >>3;
if ( last_val - current_val < -1 || last_val - current_val > 1 ) {
rgb_hue = rgblight_get_hue();
rgb_hue = rgblight_get_hue(); // Pull current hue and saturation values since we're just adjusting brightness
rgb_sat = rgblight_get_sat();
rgblight_sethsv(rgb_hue, rgb_sat, current_val * 2);
last_val = current_val;