aboutsummaryrefslogtreecommitdiff
path: root/keyboards/senselessclay/gos65/gos65.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/senselessclay/gos65/gos65.c')
-rw-r--r--keyboards/senselessclay/gos65/gos65.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/keyboards/senselessclay/gos65/gos65.c b/keyboards/senselessclay/gos65/gos65.c
new file mode 100644
index 000000000..fd77aa79a
--- /dev/null
+++ b/keyboards/senselessclay/gos65/gos65.c
@@ -0,0 +1,26 @@
1/* Copyright 2020 Hadi Iskandarani
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "gos65.h"
18
19void eeconfig_init_kb(void) { // EEPROM is getting reset!
20 rgblight_enable(); // Enable RGB by default
21 rgblight_sethsv(0, 255, 125); // Set default HSV - red hue, full saturation, medium brightness
22 rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 5); // set to RGB_RAINBOW_SWIRL by default
23
24 eeconfig_update_kb(0);
25 eeconfig_init_user();
26} \ No newline at end of file