summaryrefslogtreecommitdiff
path: root/keyboards/keebio/chocopad/chocopad.c
diff options
context:
space:
mode:
authorDanny <nooges@users.noreply.github.com>2023-07-20 08:10:09 -0400
committerGitHub <noreply@github.com>2023-07-20 08:10:09 -0400
commitc61cb72ae8ea3cf95ad4d00f88b2c5c3826c8342 (patch)
tree247e42295ef8423830c830df96c2c038454a5e10 /keyboards/keebio/chocopad/chocopad.c
parent35978727022db0da11e3c2ba97965580a4fe119a (diff)
Move files to rev1 folder, add rev2 (#21563)
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Diffstat (limited to 'keyboards/keebio/chocopad/chocopad.c')
-rw-r--r--keyboards/keebio/chocopad/chocopad.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/keebio/chocopad/chocopad.c b/keyboards/keebio/chocopad/chocopad.c
deleted file mode 100644
index b52c8608ca..0000000000
--- a/keyboards/keebio/chocopad/chocopad.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "quantum.h"
-
-void eeconfig_init_kb(void) {
-#ifdef BACKLIGHT_ENABLE
- backlight_enable();
- backlight_level(5);
-#endif
-#ifdef RGBLIGHT_ENABLE
- rgblight_enable(); // Enable RGB by default
- rgblight_sethsv(0, 255, 255); // Set default HSV - red hue, full saturation, full brightness
-#ifdef RGBLIGHT_MODE_EFFECT_SWIRL
- rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 2); // set to RGB_RAINBOW_SWIRL by default
-#endif
-#endif
-
- eeconfig_update_kb(0);
- eeconfig_init_user();
-}