]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lazydesigners/the50/the50.c
[Keyboard] fixed pins for numpad_5x4 layout (#6311)
[qmk_firmware.git] / keyboards / lazydesigners / the50 / the50.c
1 #include "the50.h"
2
3 void the50_led_on() {
4   DDRB |= (1 << 7); PORTB &= ~(1 << 7);
5 }
6
7 void the50_led_off() {
8   DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
9 }