summaryrefslogtreecommitdiffstats
path: root/keyboards/dz60/dz60.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dz60/dz60.c')
-rw-r--r--keyboards/dz60/dz60.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/dz60/dz60.c b/keyboards/dz60/dz60.c
index 8005b3beb..33122846c 100644
--- a/keyboards/dz60/dz60.c
+++ b/keyboards/dz60/dz60.c
@@ -16,7 +16,9 @@ void matrix_scan_kb(void) {
void led_init_ports(void) {
// Set caps lock LED pin as output
- DDRB |= (1<<2);
+ DDRB |= (1 << 2);
+ // Default to off
+ PORTB |= (1 << 2);
}
void led_set_kb(uint8_t usb_led) {