summaryrefslogtreecommitdiff
path: root/keyboards/handwired/co60/rev6/rev6.h
diff options
context:
space:
mode:
authorJohn M Daly <jmdaly@gmail.com>2020-01-12 22:48:24 -0500
committerJoel Challis <git@zvecr.com>2020-01-13 03:48:24 +0000
commitbe7d70b15c4b3db4ae2aa2ea7c67caa48c9ef50b (patch)
treecfae1f30cee0902555372421b75c76fddc10ceca /keyboards/handwired/co60/rev6/rev6.h
parentb89e35bdd33b3953711de8b0be64c76b64e9701b (diff)
Enable RGB underglow on the CO60 and SteamVan, switch backlight code to QMK built-in code (#7874)
* Add: RGB underglow support using SPI to SteamVan and CO60 * Update: Switch to QMK's baclight implementation for CO60 and SteamVan * Fix: Remove now unnecessary backlighting code from keyboard files
Diffstat (limited to 'keyboards/handwired/co60/rev6/rev6.h')
-rw-r--r--keyboards/handwired/co60/rev6/rev6.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/handwired/co60/rev6/rev6.h b/keyboards/handwired/co60/rev6/rev6.h
index 7d11f19d3c..1f0fe51e23 100644
--- a/keyboards/handwired/co60/rev6/rev6.h
+++ b/keyboards/handwired/co60/rev6/rev6.h
@@ -126,21 +126,3 @@
{ KC_NO, K401, K402, KC_NO, K404, KC_NO, K406, KC_NO, K408, KC_NO, K410, K411, KC_NO, K413, KC_NO }, \
}
-// Backlighting
-typedef union {
- uint8_t raw;
- struct {
- bool enable :1;
- bool breathing : 1;
- uint8_t level :6;
- };
-} backlight_levels_config_t;
-
-extern backlight_levels_config_t kb_backlight_config;
-extern bool kb_backlight_breathing;
-
-void backlight_init_ports(void);
-void backlight_set(uint8_t level);
-bool is_breathing(void);
-void breathing_enable(void);
-void breathing_disable(void);