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