~ruther/qmk_firmware

ref: 31c81d432cbe963a1132f231036d38aa908c9403 qmk_firmware/keyboards/glenpickle/chimera_ls/chimera_ls.c -rw-r--r-- 288 bytes
31c81d43 — Cipulot Add EC980C (#23172) 1 year, 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "chimera_ls.h"

void led_init(void) {
	DDRD  |= (1<<1);
	PORTD |= (1<<1);
	DDRF  |= (1<<4) | (1<<5);
	PORTF |= (1<<4) | (1<<5);
}


void matrix_init_kb(void) {
	// put your keyboard start-up code here
	// runs once when the firmware starts up
	matrix_init_user();
	led_init();
}
Do not follow this link