diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-09-19 10:27:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 10:27:46 -0400 |
commit | 32d6a8b7ecdc653bd032e2bd32cfb8bb3183c904 (patch) | |
tree | 0d5aec8c0182029d893a9e1e75780b3f904250ef /keyboards/dz60/dz60.c | |
parent | 0c335270bdb8cae19d7fc00fbab3aa1027aabbcb (diff) | |
download | qmk_firmware-32d6a8b7ecdc653bd032e2bd32cfb8bb3183c904.tar.gz |
adds DZ60 support (#1734)
* adds support for dz60
* fix dz60 readme
Diffstat (limited to 'keyboards/dz60/dz60.c')
-rw-r--r-- | keyboards/dz60/dz60.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/dz60/dz60.c b/keyboards/dz60/dz60.c new file mode 100644 index 000000000..fbe39248c --- /dev/null +++ b/keyboards/dz60/dz60.c @@ -0,0 +1,9 @@ +#include "dz60.h" + +void led_set_kb(uint8_t usb_led) { + if (usb_led & (1 << USB_LED_CAPS_LOCK)) { + DDRB |= (1 << 2); PORTB &= ~(1 << 2); + } else { + DDRB &= ~(1 << 2); PORTB &= ~(1 << 2); + } +}
\ No newline at end of file |