]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - keyboards/lazydesigners/the50/the50.c
[Keyboard] Add support for THE50 (#4844)
[qmk_firmware.git] / keyboards / lazydesigners / the50 / the50.c
diff --git a/keyboards/lazydesigners/the50/the50.c b/keyboards/lazydesigners/the50/the50.c
new file mode 100644 (file)
index 0000000..4ceb3da
--- /dev/null
@@ -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);
+}