adds DZ60 support (#1734)

* adds support for dz60

* fix dz60 readme
This commit is contained in:
Jack Humbert
2017-09-19 10:27:46 -04:00
committed by GitHub
parent 0c335270bd
commit 32d6a8b7ec
6 changed files with 260 additions and 0 deletions

9
keyboards/dz60/dz60.c Normal file
View File

@@ -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);
}
}