2023-04-15 04:07:32 -07:00
|
|
|
#include "quantum.h"
|
2017-02-07 16:55:40 -08:00
|
|
|
|
2022-10-15 12:09:03 -07:00
|
|
|
void led_update_ports(led_t led_state) {
|
|
|
|
if (led_state.caps_lock) {
|
|
|
|
setPinOutput(B2);
|
|
|
|
} else {
|
|
|
|
setPinInput(B2);
|
2017-02-07 16:55:40 -08:00
|
|
|
}
|
2020-11-02 16:55:22 -08:00
|
|
|
}
|