summaryrefslogtreecommitdiffstats
path: root/keyboards/lazydesigners/the50/the50.c
blob: 4ceb3da6ab2175cd83de79aeb4850533a7b69aed (plain)
1
2
3
4
5
6
7
8
9
#include "the50.h"

void the50_led_on() {
  DDRB |= (1 << 7); PORTB &= ~(1 << 7);
}

void the50_led_off() {
  DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
}