qmk_firmware/keyboards/lazydesigners/the50/the50.c
Erovia ee96b7a89d [Keyboard] Add support for THE50 (#4844)
* Add support for THE50

A 50% custom keyboard designed and produced by LazyDesigners

* THE50 code-improvement

Implement the changes suggested by noroadsleft.
2019-01-14 00:49:00 -08:00

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);
}