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