aboutsummaryrefslogtreecommitdiff
path: root/keyboards/ergodox_ez/led_i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ergodox_ez/led_i2c.c')
-rw-r--r--keyboards/ergodox_ez/led_i2c.c42
1 files changed, 19 insertions, 23 deletions
diff --git a/keyboards/ergodox_ez/led_i2c.c b/keyboards/ergodox_ez/led_i2c.c
index f5553a8b6..fe40ab797 100644
--- a/keyboards/ergodox_ez/led_i2c.c
+++ b/keyboards/ergodox_ez/led_i2c.c
@@ -1,31 +1,27 @@
1/* 1/*
2 * light weight WS2812 lib V2.0b 2Copyright 2012 Jun Wako <wakojun@gmail.com>
3 * 3Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com>
4 * Controls WS2811/WS2812/WS2812B RGB-LEDs 4Copyright 2015 ZSA Technology Labs Inc (@zsa)
5 * Author: Tim (cpldcpu@gmail.com) 5Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
6 * 6
7 * Jan 18th, 2014 v2.0b Initial Version 7This program is free software: you can redistribute it and/or modify
8 * Nov 29th, 2015 v2.3 Added SK6812RGBW support 8it under the terms of the GNU General Public License as published by
9 * 9the Free Software Foundation, either version 2 of the License, or
10 * This program is free software: you can redistribute it and/or modify 10(at your option) any later version.
11 * it under the terms of the GNU General Public License as published by 11
12 * the Free Software Foundation, either version 2 of the License, or 12This program is distributed in the hope that it will be useful,
13 * (at your option) any later version. 13but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * 14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * This program is distributed in the hope that it will be useful, 15GNU General Public License for more details.
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17You should have received a copy of the GNU General Public License
18 * GNU General Public License for more details. 18along with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 19*/
20 * You should have received a copy of the GNU General Public License 20
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23#ifdef RGBLIGHT_ENABLE 21#ifdef RGBLIGHT_ENABLE
24 22
25# include "ergodox_ez.h" 23# include "ergodox_ez.h"
26 24
27extern rgblight_config_t rgblight_config;
28
29void rgblight_call_driver(LED_TYPE *led, uint8_t led_num) { 25void rgblight_call_driver(LED_TYPE *led, uint8_t led_num) {
30 i2c_init(); 26 i2c_init();
31 i2c_start(0x84, ERGODOX_EZ_I2C_TIMEOUT); 27 i2c_start(0x84, ERGODOX_EZ_I2C_TIMEOUT);