diff options
Diffstat (limited to 'keyboards/lazydesigners/the50/the50.c')
-rw-r--r-- | keyboards/lazydesigners/the50/the50.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/lazydesigners/the50/the50.c b/keyboards/lazydesigners/the50/the50.c new file mode 100644 index 0000000000..4ceb3da6ab --- /dev/null +++ b/keyboards/lazydesigners/the50/the50.c @@ -0,0 +1,9 @@ +#include "the50.h" + +void the50_led_on() { + DDRB |= (1 << 7); PORTB &= ~(1 << 7); +} + +void the50_led_off() { + DDRB &= ~(1 << 7); PORTB &= ~(1 << 7); +} |