refactor: flehrad/bigswitch (#23384)
This commit is contained in:
parent
ea71945441
commit
a922627319
@ -1,37 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright 2018 QMK Contributors
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
#include "quantum.h"
|
|
||||||
|
|
||||||
volatile uint8_t runonce = true;
|
|
||||||
static uint16_t my_timer;
|
|
||||||
|
|
||||||
__attribute__ ((weak))
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
my_timer = timer_read();
|
|
||||||
}
|
|
||||||
|
|
||||||
__attribute__ ((weak))
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
#if defined(RGBLIGHT_ENABLE)
|
|
||||||
if (runonce && timer_elapsed(my_timer) > 1000) {
|
|
||||||
runonce = false;
|
|
||||||
rgblight_sethsv_noeeprom(0x0, 0xff, 0x80);
|
|
||||||
rgblight_mode_noeeprom(9);
|
|
||||||
rgblight_enable_noeeprom();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright 2018 QMK Contributors
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
/* key combination for command */
|
|
||||||
#define IS_COMMAND() ( \
|
|
||||||
false \
|
|
||||||
)
|
|
@ -1,36 +1,15 @@
|
|||||||
{
|
{
|
||||||
"keyboard_name": "BigSwitch PCB",
|
|
||||||
"manufacturer": "flehrad",
|
"manufacturer": "flehrad",
|
||||||
|
"keyboard_name": "BigSwitch PCB",
|
||||||
"maintainer": "qmk",
|
"maintainer": "qmk",
|
||||||
"usb": {
|
"debounce": 50,
|
||||||
"vid": "0x1209",
|
"development_board": "promicro",
|
||||||
"pid": "0xB195",
|
"diode_direction": "ROW2COL",
|
||||||
"device_version": "0.0.1"
|
|
||||||
},
|
|
||||||
"rgblight": {
|
|
||||||
"led_count": 8,
|
|
||||||
"animations": {
|
|
||||||
"breathing": true,
|
|
||||||
"rainbow_mood": true,
|
|
||||||
"rainbow_swirl": true,
|
|
||||||
"snake": true,
|
|
||||||
"knight": true,
|
|
||||||
"christmas": true,
|
|
||||||
"static_gradient": true,
|
|
||||||
"rgb_test": true,
|
|
||||||
"alternating": true,
|
|
||||||
"twinkle": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ws2812": {
|
|
||||||
"pin": "D3"
|
|
||||||
},
|
|
||||||
"features": {
|
"features": {
|
||||||
"bootmagic": false,
|
"bootmagic": false,
|
||||||
"command": true,
|
|
||||||
"console": true,
|
"console": true,
|
||||||
"extrakey": false,
|
"extrakey": true,
|
||||||
"mousekey": false,
|
"mousekey": true,
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgblight": true
|
"rgblight": true
|
||||||
},
|
},
|
||||||
@ -38,10 +17,33 @@
|
|||||||
"cols": ["B6"],
|
"cols": ["B6"],
|
||||||
"rows": ["B5"]
|
"rows": ["B5"]
|
||||||
},
|
},
|
||||||
"diode_direction": "ROW2COL",
|
"rgblight": {
|
||||||
"processor": "atmega32u4",
|
"animations": {
|
||||||
"bootloader": "caterina",
|
"alternating": true,
|
||||||
"debounce": 50,
|
"breathing": true,
|
||||||
|
"christmas": true,
|
||||||
|
"knight": true,
|
||||||
|
"rainbow_mood": true,
|
||||||
|
"rainbow_swirl": true,
|
||||||
|
"rgb_test": true,
|
||||||
|
"snake": true,
|
||||||
|
"static_gradient": true,
|
||||||
|
"twinkle": true
|
||||||
|
},
|
||||||
|
"default": {
|
||||||
|
"animation": "rainbow_swirl",
|
||||||
|
"val": 127
|
||||||
|
},
|
||||||
|
"led_count": 8
|
||||||
|
},
|
||||||
|
"usb": {
|
||||||
|
"device_version": "0.0.1",
|
||||||
|
"pid": "0xB195",
|
||||||
|
"vid": "0x1209"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT": {
|
"LAYOUT": {
|
||||||
"layout": [
|
"layout": [
|
||||||
|
@ -16,12 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
#define KC_OSX_EJECT 0x66
|
|
||||||
#define LOCK_OSX LSFT(LCTL(KC_OSX_EJECT))
|
|
||||||
#define SLEEP_OSX LALT(LGUI(KC_OSX_EJECT))
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
[0] = LAYOUT(LALT(LGUI(KC_KB_POWER))) // OSX Sleep
|
||||||
LAYOUT(SLEEP_OSX),
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -18,12 +18,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
[0] = LAYOUT(LALT(LGUI(KC_KB_POWER))) // OSX Sleep
|
||||||
[0] = LAYOUT(KC_TRNS),
|
|
||||||
|
|
||||||
[1] = LAYOUT(KC_TRNS),
|
|
||||||
|
|
||||||
[2] = LAYOUT(KC_TRNS),
|
|
||||||
|
|
||||||
[3] = LAYOUT(KC_TRNS)
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user