Explorar el Código

have led default to off on start up

Jennifer hace 8 años
padre
commit
29d1abff07
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      keyboards/dz60/dz60.c

+ 3 - 1
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) {