From 2196dc9f868334beabd8c3585127a74bf42ce6b7 Mon Sep 17 00:00:00 2001 From: Pekaso Date: Sun, 3 Jun 2018 00:48:34 +0900 Subject: Add support for staggerd column layout KB "Fortitude60" (#3090) * modifying fortitude for working * add accurate keymap * backlight fix * Fix slave LED Backlight * Add readme.md * modified readme.md * Fixed make error * Commit including suggestions * Add dvorak and colemak layout and some fix --- keyboards/fortitude60/rev1/rev1.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 keyboards/fortitude60/rev1/rev1.c (limited to 'keyboards/fortitude60/rev1/rev1.c') diff --git a/keyboards/fortitude60/rev1/rev1.c b/keyboards/fortitude60/rev1/rev1.c new file mode 100644 index 0000000000..5f4cd32f69 --- /dev/null +++ b/keyboards/fortitude60/rev1/rev1.c @@ -0,0 +1,22 @@ +#include "rev1.h" + +#ifdef SSD1306OLED +void led_set_kb(uint8_t usb_led) { + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + led_set_user(usb_led); +} +#endif + +void matrix_init_kb(void) { + + // // green led on + // DDRD |= (1<<5); + // PORTD &= ~(1<<5); + + // // orange led on + // DDRB |= (1<<0); + // PORTB &= ~(1<<0); + + matrix_init_user(); +}; + -- cgit v1.2.3