summaryrefslogtreecommitdiff
path: root/keyboards/lazydesigners/the50/the50.c
blob: 35c678fd5e019ca233a33b9f488992a0ab363a1a (plain)
1
2
3
4
5
6
7
8
9
#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);
}