You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
395 B

  1. #include "lily58.h"
  2. /*
  3. #ifdef SSD1306OLED
  4. void led_set_kb(uint8_t usb_led) {
  5. // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
  6. led_set_user(usb_led);
  7. }
  8. #endif
  9. */
  10. void matrix_init_kb(void) {
  11. // // green led on
  12. // DDRD |= (1<<5);
  13. // PORTD &= ~(1<<5);
  14. // // orange led on
  15. // DDRB |= (1<<0);
  16. // PORTB &= ~(1<<0);
  17. matrix_init_user();
  18. };