mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-24 17:37:40 +06:00
10 lines
151 B
C
10 lines
151 B
C
|
#include "the50.h"
|
||
|
|
||
|
void the50_led_on() {
|
||
|
DDRB |= (1 << 7); PORTB &= ~(1 << 7);
|
||
|
}
|
||
|
|
||
|
void the50_led_off() {
|
||
|
DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
|
||
|
}
|