Update GPIO macros in keymaps (#23792)

This commit is contained in:
Ryan
2024-05-25 04:38:57 +10:00
committed by GitHub
parent 8ff8e9eae5
commit b8f29c3865
82 changed files with 402 additions and 402 deletions

View File

@@ -99,13 +99,13 @@ void tk_finished(tap_dance_state_t *state, void *user_data){
layer_off(_ML1);
//turn off the indicator LED
//set LED HI to turn it off
writePinHigh(INDICATOR_LED);
gpio_write_pin_high(INDICATOR_LED);
} else {
//turn on the media layer
layer_on(_ML1);
//turn on the indicator LED
//set LED pin to LOW to turn it on
writePinLow(INDICATOR_LED);
gpio_write_pin_low(INDICATOR_LED);
}
break;
case SINGLE_HOLD: