summaryrefslogtreecommitdiffstats
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, 9 insertions, 0 deletions
diff --git a/keyboards/lazydesigners/the50/the50.c b/keyboards/lazydesigners/the50/the50.c
new file mode 100644
index 000000000..4ceb3da6a
--- /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);
+}