aboutsummaryrefslogtreecommitdiffstats
path: root/keyboard/satan/led.c
diff options
context:
space:
mode:
authorGravatar Christopher Browne <cbbrowne@ca.afilias.info>2016-06-15 11:13:29 -0400
committerGravatar Christopher Browne <cbbrowne@ca.afilias.info>2016-06-15 11:13:29 -0400
commite32b0960af07b4aea501cdc72ff31f6727506b19 (patch)
tree126dbcbae3c6fc6cbe272c135b23da6d15877c3b /keyboard/satan/led.c
parentc5a034f98462b46ca9d694022c9f3f6a550d25ee (diff)
parent1d1ced53c7cec5da2ce21bdd405d1e20bd474321 (diff)
downloadqmk_firmware-e32b0960af07b4aea501cdc72ff31f6727506b19.tar.gz
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboard/satan/led.c')
-rw-r--r--keyboard/satan/led.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/keyboard/satan/led.c b/keyboard/satan/led.c
new file mode 100644
index 000000000..5a9f2af67
--- /dev/null
+++ b/keyboard/satan/led.c
@@ -0,0 +1,36 @@
+/*
+Copyright 2012 Jun Wako <wakojun@gmail.com>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include <avr/io.h>
+#include "stdint.h"
+#include "led.h"
+
+
+void led_init_ports() {
+ // * 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);
+ }
+}