qmk_firmware/keyboards/lazydesigners/the50/the50.c
Ryan cf935d97ae
Fix functions with empty params (#19647)
* Fix functions with empty params

* Found a bunch more
2023-01-20 16:21:17 +00:00

10 lines
159 B
C

#include "the50.h"
void the50_led_on(void) {
DDRB |= (1 << 7); PORTB &= ~(1 << 7);
}
void the50_led_off(void) {
DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
}