aboutsummaryrefslogtreecommitdiff
path: root/keyboards/ergodox_ez/led_i2c.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2020-10-13 04:35:36 -0700
committerGitHub <noreply@github.com>2020-10-13 04:35:36 -0700
commit2a65709db6b6154b6780b70b26de57d8d9a63749 (patch)
treefb79b2928adcde4b41df8062060982bb03e4d806 /keyboards/ergodox_ez/led_i2c.c
parent451e600476d72b6f595044844b8a6767246de5ce (diff)
downloadqmk_firmware-2a65709db6b6154b6780b70b26de57d8d9a63749.tar.gz
qmk_firmware-2a65709db6b6154b6780b70b26de57d8d9a63749.zip
[Keyboard] Update to ZSA Boards (#10119)
* Add VID/PIDs to ErgoDox EZ * Add VID/PIDs for Planck EZ and Glow revision * Make names consistent * fix typo in docs * Move LED config back, for maximum compatibility * Add revisions for ErgoDox EZ boards * Fix embarassing typo * Typooooo Co-authored-by: Nick Brassel <nick@tzarc.org> * Update Licensing info * Update Moonlander default keymap to match Oryx's default * Fix formatting based on suggestions Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> * Make indicator LEDs more configurable * Update default keymap * Handle older eeprom settings Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
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);