summaryrefslogtreecommitdiffstats
path: root/keyboards/amj40/amj40.c
diff options
context:
space:
mode:
authorFabian Topfstedt <topfstedt@schneevonmorgen.com>2017-07-26 12:46:04 +0200
committerFabian Topfstedt <topfstedt@schneevonmorgen.com>2017-07-26 12:46:04 +0200
commit4a1f701d9f3569061d0613599fced54be32b5a54 (patch)
tree720e2225694e4417568aab539b9c3191b2a3603f /keyboards/amj40/amj40.c
parentde9331c50cb8ec769f7f4fb2eb7a73a435fc4db2 (diff)
downloadqmk_firmware-4a1f701d9f3569061d0613599fced54be32b5a54.tar.gz
qmk_firmware-4a1f701d9f3569061d0613599fced54be32b5a54.tar.xz
included amj40 implementation of nhou7 from https://github.com/nhou7/qmk_firmware_amj40
Diffstat (limited to 'keyboards/amj40/amj40.c')
-rwxr-xr-xkeyboards/amj40/amj40.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/amj40/amj40.c b/keyboards/amj40/amj40.c
new file mode 100755
index 000000000..5a2376999
--- /dev/null
+++ b/keyboards/amj40/amj40.c
@@ -0,0 +1,30 @@
+#include "amj40.h"
+#include "led.h"
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+ matrix_init_user();
+ led_init_ports();
+};
+
+void matrix_scan_kb(void) {
+ // put your looping keyboard code here
+ // runs every cycle (a lot)
+ matrix_scan_user();
+};
+
+void led_init_ports(void) {
+ // * Set our LED pins as output
+ DDRB |= (1<<2);
+}
+
+void led_set_kb(uint8_t usb_led) {
+ if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
+ // Turn capslock on
+ PORTB &= ~(1<<2);
+ } else {
+ // Turn capslock off
+ PORTB |= (1<<2);
+ }
+}