2017-03-29 00:20:36 +02:00
|
|
|
/* Copyright 2017 Yang Liu
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2016-01-24 22:14:50 +01:00
|
|
|
#ifndef RGBLIGHT_H
|
|
|
|
#define RGBLIGHT_H
|
|
|
|
|
2018-09-29 16:45:22 +02:00
|
|
|
/***** rgblight_mode(mode)/rgblight_mode_noeeprom(mode) ****
|
|
|
|
|
|
|
|
old mode number (before 0.6.117) to new mode name table
|
|
|
|
|
|
|
|
|-----------------|-----------------------------------|
|
|
|
|
| old mode number | new mode name |
|
|
|
|
|-----------------|-----------------------------------|
|
|
|
|
| 1 | RGBLIGHT_MODE_STATIC_LIGHT |
|
|
|
|
| 2 | RGBLIGHT_MODE_BREATHING |
|
|
|
|
| 3 | RGBLIGHT_MODE_BREATHING + 1 |
|
|
|
|
| 4 | RGBLIGHT_MODE_BREATHING + 2 |
|
|
|
|
| 5 | RGBLIGHT_MODE_BREATHING + 3 |
|
|
|
|
| 6 | RGBLIGHT_MODE_RAINBOW_MOOD |
|
|
|
|
| 7 | RGBLIGHT_MODE_RAINBOW_MOOD + 1 |
|
|
|
|
| 8 | RGBLIGHT_MODE_RAINBOW_MOOD + 2 |
|
|
|
|
| 9 | RGBLIGHT_MODE_RAINBOW_SWIRL |
|
|
|
|
| 10 | RGBLIGHT_MODE_RAINBOW_SWIRL + 1 |
|
|
|
|
| 11 | RGBLIGHT_MODE_RAINBOW_SWIRL + 2 |
|
|
|
|
| 12 | RGBLIGHT_MODE_RAINBOW_SWIRL + 3 |
|
|
|
|
| 13 | RGBLIGHT_MODE_RAINBOW_SWIRL + 4 |
|
|
|
|
| 14 | RGBLIGHT_MODE_RAINBOW_SWIRL + 5 |
|
|
|
|
| 15 | RGBLIGHT_MODE_SNAKE |
|
|
|
|
| 16 | RGBLIGHT_MODE_SNAKE + 1 |
|
|
|
|
| 17 | RGBLIGHT_MODE_SNAKE + 2 |
|
|
|
|
| 18 | RGBLIGHT_MODE_SNAKE + 3 |
|
|
|
|
| 19 | RGBLIGHT_MODE_SNAKE + 4 |
|
|
|
|
| 20 | RGBLIGHT_MODE_SNAKE + 5 |
|
|
|
|
| 21 | RGBLIGHT_MODE_KNIGHT |
|
|
|
|
| 22 | RGBLIGHT_MODE_KNIGHT + 1 |
|
|
|
|
| 23 | RGBLIGHT_MODE_KNIGHT + 2 |
|
|
|
|
| 24 | RGBLIGHT_MODE_CHRISTMAS |
|
|
|
|
| 25 | RGBLIGHT_MODE_STATIC_GRADIENT |
|
|
|
|
| 26 | RGBLIGHT_MODE_STATIC_GRADIENT + 1 |
|
|
|
|
| 27 | RGBLIGHT_MODE_STATIC_GRADIENT + 2 |
|
|
|
|
| 28 | RGBLIGHT_MODE_STATIC_GRADIENT + 3 |
|
|
|
|
| 29 | RGBLIGHT_MODE_STATIC_GRADIENT + 4 |
|
|
|
|
| 30 | RGBLIGHT_MODE_STATIC_GRADIENT + 5 |
|
|
|
|
| 31 | RGBLIGHT_MODE_STATIC_GRADIENT + 6 |
|
|
|
|
| 32 | RGBLIGHT_MODE_STATIC_GRADIENT + 7 |
|
|
|
|
| 33 | RGBLIGHT_MODE_STATIC_GRADIENT + 8 |
|
|
|
|
| 34 | RGBLIGHT_MODE_STATIC_GRADIENT + 9 |
|
|
|
|
| 35 | RGBLIGHT_MODE_RGB_TEST |
|
|
|
|
| 36 | RGBLIGHT_MODE_ALTERNATING |
|
2020-05-09 10:56:16 +02:00
|
|
|
| 37 | RGBLIGHT_MODE_TWINKLE |
|
|
|
|
| 38 | RGBLIGHT_MODE_TWINKLE + 1 |
|
|
|
|
| 39 | RGBLIGHT_MODE_TWINKLE + 2 |
|
|
|
|
| 40 | RGBLIGHT_MODE_TWINKLE + 3 |
|
|
|
|
| 41 | RGBLIGHT_MODE_TWINKLE + 4 |
|
|
|
|
| 42 | RGBLIGHT_MODE_TWINKLE + 5 |
|
2018-09-29 16:45:22 +02:00
|
|
|
|-----------------|-----------------------------------|
|
|
|
|
*****/
|
|
|
|
|
Refactor rgblight_reconfig.h (#7773)
* Moved contents of rgblight_reconfig.h to rgblight_post_config.h.
In #3582, rgblight_reconfig.h had to be newly created. Now, the build system of qmk_firmware has a post_cofig feature, so that what was done in rgblight_reconfig.h can now be realized in rgblight_post_config.h.
**This commit does not change the build result.**
Testing script
```shell
# build on master
git checkout master
echo master > /tmp/master_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# build on refactor_rgblight_reconfig.h
git checkout refactor_rgblight_reconfig.h
echo refactor_rgblight_reconfig.h > /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
diff -u /tmp/master_md5.txt /tmp/branch_md5.txt
```
Test result:
```
--- /tmp/master_md5.txt 2020-01-03 15:42:22.000000000 +0900
+++ /tmp/branch_md5.txt 2020-01-03 15:42:42.000000000 +0900
@@ -1,4 +1,4 @@
-master
+refactor_rgblight_reconfig.h
MD5 (helix_rev2_default.hex) = f360032edd522448366d471d8f4f8181
MD5 (helix_rev2_back_default.hex) = 0c663acc6cccc44476b3b969ad22a48f
MD5 (helix_rev2_back_default.hex) = e66b1195ff6d38e6e22c975b8ae42fd3
```
* Expressions that are too long are difficult to read, so wrap them.
* Edit the expression again
* remove `defined(RGBLIGHT_ANIMATIONS)` in `tmk_core/common/*/suspend.c`, `tmk_core/protocol/*/main.c`
move contents of rgblight_reconfig.h to rgblight.h.
The following changes were made to rgblight.h.
```diff
+#ifdef RGBLIGHT_USE_TIMER
void rgblight_task(void);
void rgblight_timer_init(void);
void rgblight_timer_enable(void);
void rgblight_timer_disable(void);
void rgblight_timer_toggle(void);
+#else
+#define rgblight_task()
+#define rgblight_timer_init()
+#define rgblight_timer_enable()
+#define rgblight_timer_disable()
+#define rgblight_timer_toggle()
+#endif
```
The following changes were made to tmk_core/common/avr/suspend.c, tmk_core/common/chibios/suspend.c, tmk_core/protocol/chibios/main.c, tmk_core/protocol/lufa/lufa.c, tmk_core/protocol/vusb/main.c.
```diff
-# ifdef RGBLIGHT_ANIMATIONS
rgblight_timer_enable();
-# endif
```
```diff
-#if defined(RGBLIGHT_ANIMATIONS) && defined(RGBLIGHT_ENABLE)
+#if defined(RGBLIGHT_ENABLE)
rgblight_task();
#endif
```
* remove 'defined(RGBLIGHT_ANIMATIONS)' in tmk_core/common/keyboard.c
Co-authored-by: Joel Challis <git@zvecr.com>
2020-03-10 09:46:03 +01:00
|
|
|
#ifdef RGBLIGHT_ANIMATIONS
|
|
|
|
// for backward compatibility
|
|
|
|
# define RGBLIGHT_EFFECT_BREATHING
|
|
|
|
# define RGBLIGHT_EFFECT_RAINBOW_MOOD
|
|
|
|
# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
|
|
|
|
# define RGBLIGHT_EFFECT_SNAKE
|
|
|
|
# define RGBLIGHT_EFFECT_KNIGHT
|
|
|
|
# define RGBLIGHT_EFFECT_CHRISTMAS
|
|
|
|
# define RGBLIGHT_EFFECT_STATIC_GRADIENT
|
|
|
|
# define RGBLIGHT_EFFECT_RGB_TEST
|
|
|
|
# define RGBLIGHT_EFFECT_ALTERNATING
|
2020-05-09 10:56:16 +02:00
|
|
|
# define RGBLIGHT_EFFECT_TWINKLE
|
Refactor rgblight_reconfig.h (#7773)
* Moved contents of rgblight_reconfig.h to rgblight_post_config.h.
In #3582, rgblight_reconfig.h had to be newly created. Now, the build system of qmk_firmware has a post_cofig feature, so that what was done in rgblight_reconfig.h can now be realized in rgblight_post_config.h.
**This commit does not change the build result.**
Testing script
```shell
# build on master
git checkout master
echo master > /tmp/master_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# build on refactor_rgblight_reconfig.h
git checkout refactor_rgblight_reconfig.h
echo refactor_rgblight_reconfig.h > /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
diff -u /tmp/master_md5.txt /tmp/branch_md5.txt
```
Test result:
```
--- /tmp/master_md5.txt 2020-01-03 15:42:22.000000000 +0900
+++ /tmp/branch_md5.txt 2020-01-03 15:42:42.000000000 +0900
@@ -1,4 +1,4 @@
-master
+refactor_rgblight_reconfig.h
MD5 (helix_rev2_default.hex) = f360032edd522448366d471d8f4f8181
MD5 (helix_rev2_back_default.hex) = 0c663acc6cccc44476b3b969ad22a48f
MD5 (helix_rev2_back_default.hex) = e66b1195ff6d38e6e22c975b8ae42fd3
```
* Expressions that are too long are difficult to read, so wrap them.
* Edit the expression again
* remove `defined(RGBLIGHT_ANIMATIONS)` in `tmk_core/common/*/suspend.c`, `tmk_core/protocol/*/main.c`
move contents of rgblight_reconfig.h to rgblight.h.
The following changes were made to rgblight.h.
```diff
+#ifdef RGBLIGHT_USE_TIMER
void rgblight_task(void);
void rgblight_timer_init(void);
void rgblight_timer_enable(void);
void rgblight_timer_disable(void);
void rgblight_timer_toggle(void);
+#else
+#define rgblight_task()
+#define rgblight_timer_init()
+#define rgblight_timer_enable()
+#define rgblight_timer_disable()
+#define rgblight_timer_toggle()
+#endif
```
The following changes were made to tmk_core/common/avr/suspend.c, tmk_core/common/chibios/suspend.c, tmk_core/protocol/chibios/main.c, tmk_core/protocol/lufa/lufa.c, tmk_core/protocol/vusb/main.c.
```diff
-# ifdef RGBLIGHT_ANIMATIONS
rgblight_timer_enable();
-# endif
```
```diff
-#if defined(RGBLIGHT_ANIMATIONS) && defined(RGBLIGHT_ENABLE)
+#if defined(RGBLIGHT_ENABLE)
rgblight_task();
#endif
```
* remove 'defined(RGBLIGHT_ANIMATIONS)' in tmk_core/common/keyboard.c
Co-authored-by: Joel Challis <git@zvecr.com>
2020-03-10 09:46:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef RGBLIGHT_STATIC_PATTERNS
|
|
|
|
# define RGBLIGHT_EFFECT_STATIC_GRADIENT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
|
|
|
|
// check dynamic animation effects chose ?
|
|
|
|
#if defined(RGBLIGHT_EFFECT_BREATHING) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_RAINBOW_MOOD) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_RAINBOW_SWIRL) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_SNAKE) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_KNIGHT) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_CHRISTMAS) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_RGB_TEST) \
|
2020-05-09 10:56:16 +02:00
|
|
|
|| defined(RGBLIGHT_EFFECT_ALTERNATING) \
|
|
|
|
|| defined(RGBLIGHT_EFFECT_TWINKLE)
|
Refactor rgblight_reconfig.h (#7773)
* Moved contents of rgblight_reconfig.h to rgblight_post_config.h.
In #3582, rgblight_reconfig.h had to be newly created. Now, the build system of qmk_firmware has a post_cofig feature, so that what was done in rgblight_reconfig.h can now be realized in rgblight_post_config.h.
**This commit does not change the build result.**
Testing script
```shell
# build on master
git checkout master
echo master > /tmp/master_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# build on refactor_rgblight_reconfig.h
git checkout refactor_rgblight_reconfig.h
echo refactor_rgblight_reconfig.h > /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
diff -u /tmp/master_md5.txt /tmp/branch_md5.txt
```
Test result:
```
--- /tmp/master_md5.txt 2020-01-03 15:42:22.000000000 +0900
+++ /tmp/branch_md5.txt 2020-01-03 15:42:42.000000000 +0900
@@ -1,4 +1,4 @@
-master
+refactor_rgblight_reconfig.h
MD5 (helix_rev2_default.hex) = f360032edd522448366d471d8f4f8181
MD5 (helix_rev2_back_default.hex) = 0c663acc6cccc44476b3b969ad22a48f
MD5 (helix_rev2_back_default.hex) = e66b1195ff6d38e6e22c975b8ae42fd3
```
* Expressions that are too long are difficult to read, so wrap them.
* Edit the expression again
* remove `defined(RGBLIGHT_ANIMATIONS)` in `tmk_core/common/*/suspend.c`, `tmk_core/protocol/*/main.c`
move contents of rgblight_reconfig.h to rgblight.h.
The following changes were made to rgblight.h.
```diff
+#ifdef RGBLIGHT_USE_TIMER
void rgblight_task(void);
void rgblight_timer_init(void);
void rgblight_timer_enable(void);
void rgblight_timer_disable(void);
void rgblight_timer_toggle(void);
+#else
+#define rgblight_task()
+#define rgblight_timer_init()
+#define rgblight_timer_enable()
+#define rgblight_timer_disable()
+#define rgblight_timer_toggle()
+#endif
```
The following changes were made to tmk_core/common/avr/suspend.c, tmk_core/common/chibios/suspend.c, tmk_core/protocol/chibios/main.c, tmk_core/protocol/lufa/lufa.c, tmk_core/protocol/vusb/main.c.
```diff
-# ifdef RGBLIGHT_ANIMATIONS
rgblight_timer_enable();
-# endif
```
```diff
-#if defined(RGBLIGHT_ANIMATIONS) && defined(RGBLIGHT_ENABLE)
+#if defined(RGBLIGHT_ENABLE)
rgblight_task();
#endif
```
* remove 'defined(RGBLIGHT_ANIMATIONS)' in tmk_core/common/keyboard.c
Co-authored-by: Joel Challis <git@zvecr.com>
2020-03-10 09:46:03 +01:00
|
|
|
# define RGBLIGHT_USE_TIMER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// clang-format on
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
#define _RGBM_SINGLE_STATIC(sym) RGBLIGHT_MODE_##sym,
|
|
|
|
#define _RGBM_SINGLE_DYNAMIC(sym) RGBLIGHT_MODE_##sym,
|
|
|
|
#define _RGBM_MULTI_STATIC(sym) RGBLIGHT_MODE_##sym,
|
|
|
|
#define _RGBM_MULTI_DYNAMIC(sym) RGBLIGHT_MODE_##sym,
|
|
|
|
#define _RGBM_TMP_STATIC(sym, msym) RGBLIGHT_MODE_##sym,
|
|
|
|
#define _RGBM_TMP_DYNAMIC(sym, msym) RGBLIGHT_MODE_##sym,
|
2018-09-13 19:24:10 +02:00
|
|
|
enum RGBLIGHT_EFFECT_MODE {
|
|
|
|
RGBLIGHT_MODE_zero = 0,
|
2019-04-20 00:05:51 +02:00
|
|
|
#include "rgblight_modes.h"
|
2018-09-13 19:24:10 +02:00
|
|
|
RGBLIGHT_MODE_last
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef RGBLIGHT_H_DUMMY_DEFINE
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# define RGBLIGHT_MODES (RGBLIGHT_MODE_last - 1)
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2019-05-02 16:59:29 +02:00
|
|
|
// sample: #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85
|
2017-10-18 01:47:49 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifndef RGBLIGHT_EFFECT_BREATHE_MAX
|
|
|
|
# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0-255
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_SNAKE_LENGTH
|
|
|
|
# define RGBLIGHT_EFFECT_SNAKE_LENGTH 4
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_KNIGHT_LENGTH
|
|
|
|
# define RGBLIGHT_EFFECT_KNIGHT_LENGTH 3
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_KNIGHT_OFFSET
|
|
|
|
# define RGBLIGHT_EFFECT_KNIGHT_OFFSET 0
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_KNIGHT_LED_NUM
|
2020-04-29 10:22:28 +02:00
|
|
|
# define RGBLIGHT_EFFECT_KNIGHT_LED_NUM (rgblight_ranges.effect_num_leds)
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL
|
|
|
|
# define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 1000
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_CHRISTMAS_STEP
|
|
|
|
# define RGBLIGHT_EFFECT_CHRISTMAS_STEP 2
|
|
|
|
# endif
|
|
|
|
|
2020-05-09 10:56:16 +02:00
|
|
|
# ifndef RGBLIGHT_EFFECT_TWINKLE_LIFE
|
|
|
|
# define RGBLIGHT_EFFECT_TWINKLE_LIFE 75
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef RGBLIGHT_EFFECT_TWINKLE_PROBABILITY
|
|
|
|
# define RGBLIGHT_EFFECT_TWINKLE_PROBABILITY 1/127
|
|
|
|
# endif
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifndef RGBLIGHT_HUE_STEP
|
|
|
|
# define RGBLIGHT_HUE_STEP 8
|
|
|
|
# endif
|
|
|
|
# ifndef RGBLIGHT_SAT_STEP
|
|
|
|
# define RGBLIGHT_SAT_STEP 17
|
|
|
|
# endif
|
|
|
|
# ifndef RGBLIGHT_VAL_STEP
|
|
|
|
# define RGBLIGHT_VAL_STEP 17
|
|
|
|
# endif
|
|
|
|
# ifndef RGBLIGHT_LIMIT_VAL
|
|
|
|
# define RGBLIGHT_LIMIT_VAL 255
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# define RGBLED_TIMER_TOP F_CPU / (256 * 64)
|
2016-11-14 05:02:38 +01:00
|
|
|
// #define RGBLED_TIMER_TOP 0xFF10
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# include <stdint.h>
|
|
|
|
# include <stdbool.h>
|
|
|
|
# include "eeconfig.h"
|
2020-04-29 10:22:28 +02:00
|
|
|
# include "ws2812.h"
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "color.h"
|
|
|
|
# include "rgblight_list.h"
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# if defined(__AVR__)
|
|
|
|
# include <avr/pgmspace.h>
|
|
|
|
# endif
|
Lets split eh (#3120)
* Line ending stuff again
* Added Let's Split Eh? Files and updated #USE_IC2 checks to also include th EH revision (can only be used in I2C)
* Added personal keymap, updated some of the EH files
* Created new keyboard file for testing "lets_split_eh" will merge into lets_split once fully functional
* Added split code from lets_split, removed pro micro imports and LED code
THIS IS WORKING CODE, WITHOUT RGB AND BACKLIGHT
* Took back original Lets Slit files for the lets_split keyboard, working in the lets_split_eh folder for now
* Updated eh.c
* More rework of the I2C code, added global flags for split boards.
* Introduced RGB over I2C, having weird edge case issues at the moment though
* Fixed weird I2C edgecase with RGB, although still would like to track down route cause..
* Changed RGB keycodes (static ones) to activate on key-up instead of key-down to elimate weird ghosting issue over I2C
* Lots of changes, mainly externalized the Split keyboard code and added logic for only including when needed.
- Added makefile option "SPLIT_KEYBOARD" that when = yes will include the split keyboard files and custom matrix
- Split keyboard files placed into quantum/split_common/
- Added define option for config files "SPLIT_HAND_PIN" FOr using high/low pin to determine handedness, low = right hand, high = left hand
- Cleaned up split logic for RGB and Backlight so it is only exectuted / included when needed
* Updated documentation for the new makefile options and #defines specific to split keyboards
* Added a bit more info to docs, so people aren't confused
* Modifed Let's Split to use externalized code, also added left and right hand eeprom files to the split_common folder
* Removed some debugging from eh.c
* Small changes to keyboard configs. Also added a default keymap (just a copy of my that_canadian keymap).
* Added a README file to the Let's Split Eh?
* Changed it so RGB static updates are done on key-up ONLY for split boards rather than all boards. Also fixed leftover un-used variable in rgblight.c
* Updated default keymap and my keymap for Let's Split Eh? Updated the comments so it reflects RGB control, and removed audio functions.
* Fixed lets_split_eh not having a default version
* Removed "eh" references from lets_split folder for now
* Took lets_split folder from master to fix travis build errors, weird my local was overriding.
* Changed LAYOUT_ortho_4x12_kc -> LAYOUT_kc_ortho_4x12 to match bakingpy and others
* Removed rules.mk from my lets_split keymap, not needed
* Updated the config_options doc to better explain the usage of "#define SPLIT_HAND_PIN"
2018-07-17 04:25:02 +02:00
|
|
|
|
2020-03-10 20:50:01 +01:00
|
|
|
# ifdef RGBLIGHT_LAYERS
|
|
|
|
typedef struct {
|
2020-03-10 21:24:13 +01:00
|
|
|
uint8_t index; // The first LED to light
|
|
|
|
uint8_t count; // The number of LEDs to light
|
2020-03-10 20:50:01 +01:00
|
|
|
uint8_t hue;
|
|
|
|
uint8_t sat;
|
|
|
|
uint8_t val;
|
|
|
|
} rgblight_segment_t;
|
|
|
|
|
2020-03-10 21:24:13 +01:00
|
|
|
# define RGBLIGHT_END_SEGMENT_INDEX (255)
|
|
|
|
# define RGBLIGHT_END_SEGMENTS \
|
|
|
|
{ RGBLIGHT_END_SEGMENT_INDEX, 0, 0, 0 }
|
2020-03-10 20:50:01 +01:00
|
|
|
# define RGBLIGHT_MAX_LAYERS 8
|
2020-03-10 21:24:13 +01:00
|
|
|
# define RGBLIGHT_LAYER_SEGMENTS(...) \
|
|
|
|
{ __VA_ARGS__, RGBLIGHT_END_SEGMENTS }
|
|
|
|
# define RGBLIGHT_LAYERS_LIST(...) \
|
|
|
|
{ __VA_ARGS__, NULL }
|
2020-03-10 20:50:01 +01:00
|
|
|
|
|
|
|
// Get/set enabled rgblight layers
|
|
|
|
void rgblight_set_layer_state(uint8_t layer, bool enabled);
|
|
|
|
bool rgblight_get_layer_state(uint8_t layer);
|
|
|
|
|
|
|
|
// Point this to an array of rgblight_segment_t arrays in keyboard_post_init_user to use rgblight layers
|
2020-03-10 21:24:13 +01:00
|
|
|
extern const rgblight_segment_t *const *rgblight_layers;
|
2020-05-09 10:38:33 +02:00
|
|
|
|
|
|
|
# ifdef RGBLIGHT_LAYER_BLINK
|
|
|
|
# define RGBLIGHT_USE_TIMER
|
|
|
|
void rgblight_blink_layer(uint8_t layer, uint16_t duration_ms);
|
|
|
|
# endif
|
|
|
|
|
2020-03-10 20:50:01 +01:00
|
|
|
# endif
|
|
|
|
|
2016-12-28 22:29:02 +01:00
|
|
|
extern LED_TYPE led[RGBLED_NUM];
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
extern const uint8_t RGBLED_BREATHING_INTERVALS[4] PROGMEM;
|
|
|
|
extern const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[3] PROGMEM;
|
|
|
|
extern const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[3] PROGMEM;
|
|
|
|
extern const uint8_t RGBLED_SNAKE_INTERVALS[3] PROGMEM;
|
|
|
|
extern const uint8_t RGBLED_KNIGHT_INTERVALS[3] PROGMEM;
|
2018-06-04 17:10:39 +02:00
|
|
|
extern const uint16_t RGBLED_RGBTEST_INTERVALS[1] PROGMEM;
|
2020-05-09 10:56:16 +02:00
|
|
|
extern const uint8_t RGBLED_TWINKLE_INTERVALS[3] PROGMEM;
|
2019-08-30 20:19:03 +02:00
|
|
|
extern bool is_rgblight_initialized;
|
2016-10-09 18:26:16 +02:00
|
|
|
|
2019-05-01 17:02:02 +02:00
|
|
|
// Should stay in sycn with rgb matrix config as we reuse eeprom storage for both (for now)
|
2016-01-24 22:14:50 +01:00
|
|
|
typedef union {
|
2019-08-30 20:19:03 +02:00
|
|
|
uint32_t raw;
|
|
|
|
struct {
|
|
|
|
bool enable : 1;
|
|
|
|
uint8_t mode : 7;
|
|
|
|
uint8_t hue : 8;
|
|
|
|
uint8_t sat : 8;
|
|
|
|
uint8_t val : 8;
|
|
|
|
uint8_t speed : 8; // EECONFIG needs to be increased to support this
|
|
|
|
};
|
2016-01-24 22:14:50 +01:00
|
|
|
} rgblight_config_t;
|
|
|
|
|
2019-04-20 00:05:51 +02:00
|
|
|
typedef struct _rgblight_status_t {
|
2019-08-30 20:19:03 +02:00
|
|
|
uint8_t base_mode;
|
|
|
|
bool timer_enabled;
|
|
|
|
# ifdef RGBLIGHT_SPLIT
|
2019-04-20 00:05:51 +02:00
|
|
|
uint8_t change_flags;
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2020-03-10 20:50:01 +01:00
|
|
|
# ifdef RGBLIGHT_LAYERS
|
|
|
|
uint8_t enabled_layer_mask;
|
|
|
|
# endif
|
2019-04-20 00:05:51 +02:00
|
|
|
} rgblight_status_t;
|
|
|
|
|
2020-04-29 10:22:28 +02:00
|
|
|
/*
|
|
|
|
* Structure for RGB Light clipping ranges
|
|
|
|
*/
|
|
|
|
typedef struct _rgblight_ranges_t {
|
|
|
|
uint8_t clipping_start_pos;
|
|
|
|
uint8_t clipping_num_leds;
|
|
|
|
uint8_t effect_start_pos;
|
|
|
|
uint8_t effect_end_pos;
|
|
|
|
uint8_t effect_num_leds;
|
|
|
|
} rgblight_ranges_t;
|
|
|
|
|
|
|
|
extern rgblight_ranges_t rgblight_ranges;
|
|
|
|
|
2019-05-16 06:11:28 +02:00
|
|
|
/* === Utility Functions ===*/
|
|
|
|
void sethsv(uint8_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1);
|
2019-08-30 20:19:03 +02:00
|
|
|
void sethsv_raw(uint8_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1); // without RGBLIGHT_LIMIT_VAL check
|
2019-05-16 06:11:28 +02:00
|
|
|
void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1);
|
2019-04-20 00:05:51 +02:00
|
|
|
|
2019-05-16 06:11:28 +02:00
|
|
|
/* === Low level Functions === */
|
|
|
|
void rgblight_set(void);
|
|
|
|
void rgblight_set_clipping_range(uint8_t start_pos, uint8_t num_leds);
|
2019-04-20 00:05:51 +02:00
|
|
|
|
2019-05-16 06:11:28 +02:00
|
|
|
/* === Effects and Animations Functions === */
|
|
|
|
/* effect range setting */
|
|
|
|
void rgblight_set_effect_range(uint8_t start_pos, uint8_t num_leds);
|
|
|
|
|
|
|
|
/* direct operation */
|
|
|
|
void rgblight_setrgb_at(uint8_t r, uint8_t g, uint8_t b, uint8_t index);
|
|
|
|
void rgblight_sethsv_at(uint8_t hue, uint8_t sat, uint8_t val, uint8_t index);
|
|
|
|
void rgblight_setrgb_range(uint8_t r, uint8_t g, uint8_t b, uint8_t start, uint8_t end);
|
|
|
|
void rgblight_sethsv_range(uint8_t hue, uint8_t sat, uint8_t val, uint8_t start, uint8_t end);
|
|
|
|
void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b);
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifndef RGBLIGHT_SPLIT
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_setrgb_master(uint8_t r, uint8_t g, uint8_t b);
|
|
|
|
void rgblight_setrgb_slave(uint8_t r, uint8_t g, uint8_t b);
|
|
|
|
void rgblight_sethsv_master(uint8_t hue, uint8_t sat, uint8_t val);
|
|
|
|
void rgblight_sethsv_slave(uint8_t hue, uint8_t sat, uint8_t val);
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2019-04-20 00:05:51 +02:00
|
|
|
|
2019-05-16 06:11:28 +02:00
|
|
|
/* effect mode change */
|
|
|
|
void rgblight_mode(uint8_t mode);
|
|
|
|
void rgblight_mode_noeeprom(uint8_t mode);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_increase(void);
|
|
|
|
void rgblight_decrease(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_step(void);
|
|
|
|
void rgblight_step_noeeprom(void);
|
|
|
|
void rgblight_step_reverse(void);
|
|
|
|
void rgblight_step_reverse_noeeprom(void);
|
|
|
|
|
|
|
|
/* effects mode disable/enable */
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_toggle(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_toggle_noeeprom(void);
|
2016-11-18 02:56:36 +01:00
|
|
|
void rgblight_enable(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_enable_noeeprom(void);
|
2017-12-05 19:56:15 +01:00
|
|
|
void rgblight_disable(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_disable_noeeprom(void);
|
|
|
|
|
|
|
|
/* hue, sat, val change */
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_increase_hue(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_increase_hue_noeeprom(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_decrease_hue(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_decrease_hue_noeeprom(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_increase_sat(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_increase_sat_noeeprom(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_decrease_sat(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_decrease_sat_noeeprom(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_increase_val(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_increase_val_noeeprom(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_decrease_val(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_decrease_val_noeeprom(void);
|
2018-05-09 05:23:21 +02:00
|
|
|
void rgblight_increase_speed(void);
|
|
|
|
void rgblight_decrease_speed(void);
|
2019-05-01 17:02:02 +02:00
|
|
|
void rgblight_sethsv(uint8_t hue, uint8_t sat, uint8_t val);
|
2019-05-16 06:11:28 +02:00
|
|
|
void rgblight_sethsv_noeeprom(uint8_t hue, uint8_t sat, uint8_t val);
|
|
|
|
|
2020-01-20 19:18:25 +01:00
|
|
|
/* effect speed */
|
|
|
|
uint8_t rgblight_get_speed(void);
|
2020-01-20 19:48:28 +01:00
|
|
|
void rgblight_set_speed(uint8_t speed);
|
|
|
|
void rgblight_set_speed_noeeprom(uint8_t speed);
|
2020-01-20 19:18:25 +01:00
|
|
|
|
2019-05-16 06:11:28 +02:00
|
|
|
/* query */
|
|
|
|
uint8_t rgblight_get_mode(void);
|
2019-05-01 17:02:02 +02:00
|
|
|
uint8_t rgblight_get_hue(void);
|
2017-12-17 17:44:13 +01:00
|
|
|
uint8_t rgblight_get_sat(void);
|
|
|
|
uint8_t rgblight_get_val(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2019-05-16 06:11:28 +02:00
|
|
|
/* === qmk_firmware (core)internal Functions === */
|
2019-08-30 20:19:03 +02:00
|
|
|
void rgblight_init(void);
|
2019-05-16 06:11:28 +02:00
|
|
|
uint32_t rgblight_read_dword(void);
|
2019-08-30 20:19:03 +02:00
|
|
|
void rgblight_update_dword(uint32_t dword);
|
2016-01-24 22:14:50 +01:00
|
|
|
uint32_t eeconfig_read_rgblight(void);
|
2019-08-30 20:19:03 +02:00
|
|
|
void eeconfig_update_rgblight(uint32_t val);
|
2020-01-20 19:18:25 +01:00
|
|
|
void eeconfig_update_rgblight_current(void);
|
2019-08-30 20:19:03 +02:00
|
|
|
void eeconfig_update_rgblight_default(void);
|
|
|
|
void eeconfig_debug_rgblight(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2018-05-09 05:23:21 +02:00
|
|
|
void rgb_matrix_increase(void);
|
|
|
|
void rgb_matrix_decrease(void);
|
|
|
|
|
2019-05-01 17:02:02 +02:00
|
|
|
void rgblight_sethsv_eeprom_helper(uint8_t hue, uint8_t sat, uint8_t val, bool write_to_eeprom);
|
2018-05-29 17:05:22 +02:00
|
|
|
void rgblight_mode_eeprom_helper(uint8_t mode, bool write_to_eeprom);
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# define EZ_RGB(val) rgblight_show_solid_color((val >> 16) & 0xFF, (val >> 8) & 0xFF, val & 0xFF)
|
2016-11-29 15:23:16 +01:00
|
|
|
void rgblight_show_solid_color(uint8_t r, uint8_t g, uint8_t b);
|
2016-11-14 05:02:38 +01:00
|
|
|
|
2020-03-10 21:24:13 +01:00
|
|
|
# ifdef RGBLIGHT_USE_TIMER
|
2016-11-14 05:02:38 +01:00
|
|
|
void rgblight_task(void);
|
2016-01-24 22:14:50 +01:00
|
|
|
void rgblight_timer_init(void);
|
|
|
|
void rgblight_timer_enable(void);
|
|
|
|
void rgblight_timer_disable(void);
|
|
|
|
void rgblight_timer_toggle(void);
|
2020-03-10 21:24:13 +01:00
|
|
|
# else
|
|
|
|
# define rgblight_task()
|
|
|
|
# define rgblight_timer_init()
|
|
|
|
# define rgblight_timer_enable()
|
|
|
|
# define rgblight_timer_disable()
|
|
|
|
# define rgblight_timer_toggle()
|
|
|
|
# endif
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifdef RGBLIGHT_SPLIT
|
|
|
|
# define RGBLIGHT_STATUS_CHANGE_MODE (1 << 0)
|
|
|
|
# define RGBLIGHT_STATUS_CHANGE_HSVS (1 << 1)
|
|
|
|
# define RGBLIGHT_STATUS_CHANGE_TIMER (1 << 2)
|
|
|
|
# define RGBLIGHT_STATUS_ANIMATION_TICK (1 << 3)
|
2020-03-10 20:50:01 +01:00
|
|
|
# define RGBLIGHT_STATUS_CHANGE_LAYERS (1 << 4)
|
2019-05-16 06:11:28 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
typedef struct _rgblight_syncinfo_t {
|
2019-05-16 06:11:28 +02:00
|
|
|
rgblight_config_t config;
|
|
|
|
rgblight_status_t status;
|
2019-08-30 20:19:03 +02:00
|
|
|
} rgblight_syncinfo_t;
|
2019-05-16 06:11:28 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
/* for split keyboard master side */
|
|
|
|
uint8_t rgblight_get_change_flags(void);
|
|
|
|
void rgblight_clear_change_flags(void);
|
|
|
|
void rgblight_get_syncinfo(rgblight_syncinfo_t *syncinfo);
|
|
|
|
/* for split keyboard slave side */
|
|
|
|
void rgblight_update_sync(rgblight_syncinfo_t *syncinfo, bool write_to_eeprom);
|
|
|
|
# endif
|
2019-05-16 06:11:28 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifdef RGBLIGHT_USE_TIMER
|
2019-04-20 00:05:51 +02:00
|
|
|
|
|
|
|
typedef struct _animation_status_t {
|
|
|
|
uint16_t last_timer;
|
|
|
|
uint8_t delta; /* mode - base_mode */
|
|
|
|
bool restart;
|
|
|
|
union {
|
|
|
|
uint16_t pos16;
|
|
|
|
uint8_t pos;
|
2019-05-01 17:02:02 +02:00
|
|
|
int8_t current_hue;
|
2019-04-20 00:05:51 +02:00
|
|
|
uint16_t current_offset;
|
|
|
|
};
|
|
|
|
} animation_status_t;
|
|
|
|
|
|
|
|
extern animation_status_t animation_status;
|
|
|
|
|
|
|
|
void rgblight_effect_breathing(animation_status_t *anim);
|
|
|
|
void rgblight_effect_rainbow_mood(animation_status_t *anim);
|
|
|
|
void rgblight_effect_rainbow_swirl(animation_status_t *anim);
|
|
|
|
void rgblight_effect_snake(animation_status_t *anim);
|
|
|
|
void rgblight_effect_knight(animation_status_t *anim);
|
|
|
|
void rgblight_effect_christmas(animation_status_t *anim);
|
|
|
|
void rgblight_effect_rgbtest(animation_status_t *anim);
|
|
|
|
void rgblight_effect_alternating(animation_status_t *anim);
|
2020-05-09 10:56:16 +02:00
|
|
|
void rgblight_effect_twinkle(animation_status_t *anim);
|
2018-09-13 19:24:10 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2018-09-13 19:24:10 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
#endif // #ifndef RGBLIGHT_H_DUMMY_DEFINE
|
|
|
|
#endif // RGBLIGHT_H
|