mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-12 03:24:37 +00:00
Simplified ps2avrGB rgblight_set logic a bit
This commit is contained in:
parent
6037cede2c
commit
964d7060e1
1 changed files with 6 additions and 11 deletions
|
@ -27,21 +27,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
extern rgblight_config_t rgblight_config;
|
extern rgblight_config_t rgblight_config;
|
||||||
|
|
||||||
void rgblight_set(void) {
|
void rgblight_set(void) {
|
||||||
uint8_t data[3 * RGBLED_NUM];
|
if (!rgblight_config.enable) {
|
||||||
for (uint8_t i = 0; i < RGBLED_NUM; i++) {
|
for (uint8_t i = 0; i < RGBLED_NUM; i++) {
|
||||||
if (rgblight_config.enable) {
|
led[i].r = 0;
|
||||||
data[3 * i] = led[i].g;
|
led[i].g = 0;
|
||||||
data[3 * i + 1] = led[i].r;
|
led[i].b = 0;
|
||||||
data[3 * i + 2] = led[i].b;
|
|
||||||
} else {
|
|
||||||
data[3 * i] = 0;
|
|
||||||
data[3 * i + 1] = 0;
|
|
||||||
data[3 * i + 2] = 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i2c_init();
|
i2c_init();
|
||||||
i2c_send(0xb0, data, 48);
|
i2c_send(0xb0, (uint8_t*)led, 48);
|
||||||
}
|
}
|
||||||
|
|
||||||
__attribute__ ((weak))
|
__attribute__ ((weak))
|
||||||
|
|
Loading…
Reference in a new issue