b0805e38b9
* added ATOM47 (Vortex Core QMK powered PCB) * fixed broken\unfinished comment block * moved Layer template to default template. * moved Layer template to default template and removed template from the keymap.c file. * Added LEdiodes config * created readme.md contains an image of 60% board(LEdiodes). * updated readme.md with images added images of the PCB and some feature details from https://geekhack.org/index.php?topic=93447.msg2545221#msg2545221 * removed excess words. * followed the readme template to a T. * formatting fix : added a return.
31 lines
632 B
C
31 lines
632 B
C
#include "atom47.h"
|
|
#include "led.h"
|
|
|
|
void matrix_init_kb(void) {
|
|
// put your keyboard start-up code here
|
|
// runs once when the firmware starts up
|
|
matrix_init_user();
|
|
led_init_ports();
|
|
};
|
|
|
|
void matrix_scan_kb(void) {
|
|
// put your looping keyboard code here
|
|
// runs every cycle (a lot)
|
|
matrix_scan_user();
|
|
};
|
|
|
|
void led_init_ports(void) {
|
|
// * Set our LED pins as output
|
|
DDRB &= ~(1<<5);
|
|
}
|
|
|
|
void led_set_kb(uint8_t usb_led) {
|
|
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
|
// Turn capslock on
|
|
PORTF |= (1<<5);
|
|
} else {
|
|
// Turn capslock off
|
|
PORTF &= ~(1<<5);
|
|
}
|
|
led_set_user(usb_led);
|
|
}
|