* Refactor to use led config * Refactor to use led config * Refactor to use led config * Refactor to use led config * Refactor to use led config
@@ -16,19 +16,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "1up60hte.h"
-
-void keyboard_pre_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
- setPinOutput(B6);
- keyboard_pre_init_user();
-}
-void led_set_kb(uint8_t usb_led) {
- if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
- writePinLow(B6);
- } else {
- writePinHigh(B6);
- }
- led_set_user(usb_led);
@@ -40,6 +40,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* COL2ROW or ROW2COL */
#define DIODE_DIRECTION COL2ROW
+#define LED_CAPS_LOCK_PIN B6
+#define LED_PIN_ON_STATE 0
+
/* number of backlight levels */
#define BACKLIGHT_PIN B7
#ifdef BACKLIGHT_PIN
@@ -48,6 +48,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* COL2ROW, ROW2COL*/
+#define LED_CAPS_LOCK_PIN B7
#define BACKLIGHT_PIN B6
#define BACKLIGHT_BREATHING
#define BACKLIGHT_LEVELS 5
@@ -14,36 +14,3 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "dc60.h"
-void matrix_init_kb(void) {
- matrix_init_user();
-void matrix_scan_kb(void) {
- // put your looping keyboard code here
- // runs every cycle (a lot)
- matrix_scan_user();
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
- return process_record_user(keycode, record);
- if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
- DDRB |= (1 << 7);
- PORTB &= ~(1 << 7);
- DDRB &= ~(1 << 7);
@@ -48,10 +48,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
-/*
- * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
- */
-#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
+#define LED_NUM_LOCK_PIN E6
+#define LED_CAPS_LOCK_PIN C6
+#define LED_SCROLL_LOCK_PIN C7
@@ -14,51 +14,3 @@
#include "x11.h"
- setPinOutput(C6);
- setPinOutput(E6);
- setPinOutput(C7);
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
- writePinLow(C6);
- writePinHigh(C6);
- if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
- writePinLow(E6);
- writePinHigh(E6);
- if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
- writePinLow(C7);
- writePinHigh(C7);
@@ -1,30 +1 @@
#include "amj60.h"
-#include "led.h"
- led_init_ports();
-};
-void led_init_ports(void) {
- // * Set our LED pins as output
- DDRB |= (1<<2);
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // Turn capslock on
- PORTB &= ~(1<<2);
- // Turn capslock off
- PORTB |= (1<<2);
@@ -38,11 +38,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_COL_PINS { F1, F0, E6, C7, C6, B0, D4, B1, B7, B5, B4, D7, D6, B3}
#define UNUSED_PINS
-#define BACKLIGHT_PIN B6
+#define LED_CAPS_LOCK_PIN B2
+#define BACKLIGHT_PIN B6
/* define if matrix has ghost */
//#define MATRIX_HAS_GHOST
@@ -48,10 +48,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+#define LED_CAPS_LOCK_PIN B3
// #define BACKLIGHT_PIN B7
// #define BACKLIGHT_BREATHING
@@ -15,29 +15,8 @@
#include "wraith.h"
-// Optional override functions below.
-// You can leave any or all of these undefined.
-// These are only required if you want to perform custom actions.
void matrix_init_kb(void) {
- setPinOutput(B3);
- setPinOutput(B0);
+ setPinOutput(B0);
- writePinLow(B3);
- writePinHigh(B3);
+ matrix_init_user();
}
@@ -30,6 +30,9 @@
@@ -1,21 +1 @@
#include "dz60.h"
- setPinOutput(B2);
- writePinHigh(B2);
- writePinLow(B2);
@@ -1,26 +1 @@
#include "jd40.h"
- // if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // gh60_caps_led_on();
- // } else {
- // gh60_caps_led_off();
- // }
- // if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- // gh60_esc_led_on();
- // gh60_esc_led_off();
- // if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- // gh60_fn_led_on();
- // gh60_fn_led_off();
@@ -53,6 +53,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
#define BACKLIGHT_LEVELS 6
@@ -14,37 +14,3 @@
#include "mk60.h"
- setPinOutput(B7);
- if(IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)){
- writePinLow(B7);
- }else {
- writePinHigh(B7);
@@ -31,6 +31,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_ROWS 8
#define MATRIX_COLS 11
+#define LED_CAPS_LOCK_PIN B5
+#define LED_SCROLL_LOCK_PIN B6
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
#define DEBOUNCE 5
@@ -14,56 +14,3 @@
#include "moon.h"
-#define CAPS_PIN B5
-#define SCROLL_PIN B6
- setPinOutput(CAPS_PIN);
- setPinOutput(SCROLL_PIN);
-*/
- writePinHigh(CAPS_PIN);
- writePinLow(CAPS_PIN);
- writePinHigh(SCROLL_PIN);
- writePinLow(SCROLL_PIN);
@@ -22,6 +22,11 @@
#define DIODE_DIRECTION ROW2COL
+#define LED_NUM_LOCK_PIN C6
+#define LED_CAPS_LOCK_PIN C7
+#define LED_SCROLL_LOCK_PIN B5
@@ -1,65 +1 @@
#include "mt980.h"
-__attribute__ ((weak))
-void matrix_init_keymap(void) {}
-void matrix_scan_keymap(void) {}
-bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
- return true;
-uint32_t layer_state_set_keymap (uint32_t state) {
- return state;
-void led_set_keymap(uint8_t usb_led) {}
-void matrix_init_user(void) {
- matrix_init_keymap();
-void matrix_scan_user(void) {
- matrix_scan_keymap();
-void keyboard_pre_init_user(void) {
- /* Set NUMLOCK indicator pin as output */
- /* Set CAPSLOCK indicator pin as output */
- /* Set SCROLLOCK indicator pin as output */
- setPinOutput(B5);
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return process_record_keymap(keycode, record);
-void led_set_user(uint8_t usb_led) {
- else {
- writePinLow(B5);
- writePinHigh(B5);
- led_set_keymap(usb_led);
@@ -24,9 +24,9 @@
#endif
#define MATRIX_COL_PINS { F0, F1, F2, F3, F4, F5, F6, F7, C7, C6, C5, C4, C3, C2, C1, C0, B0, B1, B2, B3, B4, B5, B6 }
-#define NUMLOCKLEDPIN E0
-#define CAPSLOCKLEDPIN E1
-#define SCROLLLOCKLEDPIN B7
+#define LED_NUM_LOCK_PIN E0
+#define LED_CAPS_LOCK_PIN E1
+#define LED_SCROLL_LOCK_PIN B7
@@ -1,11 +1,6 @@
#include "omnikeyish.h"
void keyboard_pre_init_user(void) {
- /* Configure LED driving pins as output pins */
- setPinOutput(NUMLOCKLEDPIN);
- setPinOutput(CAPSLOCKLEDPIN);
- setPinOutput(SCROLLLOCKLEDPIN);
dynamic_macro_init();
@@ -33,23 +28,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
- writePinHigh(NUMLOCKLEDPIN);
- writePinLow(NUMLOCKLEDPIN);
- writePinHigh(CAPSLOCKLEDPIN);
- writePinLow(CAPSLOCKLEDPIN);
- writePinHigh(SCROLLLOCKLEDPIN);
- writePinLow(SCROLLLOCKLEDPIN);
@@ -43,6 +43,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
+#define LED_NUM_LOCK_PIN D2
+#define LED_CAPS_LOCK_PIN D3
+#define LED_SCROLL_LOCK_PIN D4
#define BACKLIGHT_LEVELS 3
@@ -14,63 +14,13 @@
#include "m0lly.h"
void keyboard_pre_init_kb(void) {
- setPinInputHigh(D0);
- setPinInputHigh(D1);
+ setPinInputHigh(D0);
+ setPinInputHigh(D1);
+ setPinOutput(B7);
+ writePinHigh(B7);
+ keyboard_pre_init_user();
- DDRD |= (1<<2) | (1<<3) | (1<<4); // OUT
- DDRB |= (1<<7); // OUT
- PORTB |= (1<<7);
-// led_set_user(usb_led);
- if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- // Turn numlock on
- PORTD |= (1<<2);
- // Turn numlock off
- PORTD &= ~(1<<2);
- PORTD |= (1<<3);
- PORTD &= ~(1<<3);
- if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- // Turn scrolllock on
- PORTD |= (1<<4);
- // Turn scrolllock off
- PORTD &= ~(1<<4);
#include "tkc1800.h"
@@ -47,6 +47,9 @@
/* COL2ROW, ROW2COL */
//#define DIODE_DIRECTION COL2ROW
#define BACKLIGHT_PIN B5
#define BACKLIGHT_LEVELS 10
@@ -14,19 +14,3 @@
#include "xd84.h"
@@ -35,6 +35,9 @@
#define RGB_DI_PIN F6
#ifdef RGB_DI_PIN
#define RGBLED_NUM 12
@@ -14,17 +14,3 @@
#include "xd84pro.h"
-bool led_update_kb(led_t led_state) {
- if (led_update_user(led_state)) {
- writePin(B2, !led_state.caps_lock);
- return false;
@@ -47,6 +47,10 @@
@@ -14,29 +14,3 @@
#include "xd96.h"
-#define CAPS_PIN B6
-#define NUMLOCK_PIN C6
- setPinOutput(NUMLOCK_PIN);
- writePinLow(NUMLOCK_PIN);
- writePinHigh(NUMLOCK_PIN);
+#define LED_CAPS_LOCK_PIN D4
// #define BACKLIGHT_LEVELS 3
@@ -15,59 +15,22 @@
#include "yd68.h"
- //Capslock LED Output Low
- DDRD |= (1<<4);
+void keyboard_pre_init_kb(void) {
//Backlight LEDs Output Low
- DDRD |= (1<<6);
- PORTD &= ~(1<<6);
+ setPinOutput(D6);
+ writePinLow(D6);
//RGB power output low
- DDRE |= (1<<2);
- PORTE &= ~(1<<2);
+ setPinOutput(E2);
+ writePinLow(E2);
//Bluetooth power output high
+ setPinOutput(B2);
+ writePinLow(B2);
//RGB data output low
- DDRB |= (1<<3);
- PORTB &= ~(1<<3);
+ setPinOutput(B3);
+ writePinLow(B3);
- // output low
- // output high
@@ -22,6 +22,10 @@
+#define LED_NUM_LOCK_PIN E7
+#define LED_CAPS_LOCK_PIN B0
+#define LED_SCROLL_LOCK_PIN E6
/* Set 0 if debouncing isn't needed */
@@ -1,32 +1 @@
#include "z150_bh.h"
- setPinOutput(E7);
- writePinHigh(E7);
- writePinLow(E7);
- writePinHigh(B0);
- writePinLow(B0);