Properly fix i2c leds for ergodox shine (#356)
This commit is contained in:
@@ -21,13 +21,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#ifdef RGBLIGHT_ENABLE
|
#ifdef RGBLIGHT_ENABLE
|
||||||
|
|
||||||
# include "ergodox_ez.h"
|
# include "ergodox_ez.h"
|
||||||
i2c_status_t i2c_rgblight = 0x20;
|
bool i2c_rgblight = true;
|
||||||
extern bool i2c_initialized;
|
extern bool i2c_initialized;
|
||||||
|
|
||||||
void rgblight_call_driver(LED_TYPE *led, uint8_t led_num) {
|
void rgblight_call_driver(LED_TYPE *led, uint8_t led_num) {
|
||||||
if (i2c_initialized && !mcp23018_status) {
|
if (i2c_initialized && !mcp23018_status && i2c_rgblight) {
|
||||||
if (!i2c_rgblight) i2c_rgblight = i2c_start(0x84, ERGODOX_EZ_I2C_TIMEOUT);
|
if (i2c_start(0x84, ERGODOX_EZ_I2C_TIMEOUT)) {
|
||||||
|
i2c_rgblight = false;
|
||||||
|
i2c_stop();
|
||||||
|
} else {
|
||||||
uint8_t i = 0;
|
uint8_t i = 0;
|
||||||
# if defined(ERGODOX_LED_30)
|
# if defined(ERGODOX_LED_30)
|
||||||
// prevent right-half code from trying to bitbang all 30
|
// prevent right-half code from trying to bitbang all 30
|
||||||
@@ -42,15 +44,16 @@ void rgblight_call_driver(LED_TYPE *led, uint8_t led_num) {
|
|||||||
# endif
|
# endif
|
||||||
{
|
{
|
||||||
uint8_t *data = (uint8_t *)(led + i);
|
uint8_t *data = (uint8_t *)(led + i);
|
||||||
if (!i2c_rgblight) i2c_rgblight = i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
||||||
if (!i2c_rgblight) i2c_rgblight = i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
||||||
if (!i2c_rgblight) i2c_rgblight = i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
||||||
# ifdef RGBW
|
# ifdef RGBW
|
||||||
if (!i2c_rgblight) i2c_rgblight = i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
i2c_write(*data++, ERGODOX_EZ_I2C_TIMEOUT);
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
i2c_stop();
|
i2c_stop();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ws2812_setleds(led, led_num);
|
ws2812_setleds(led, led_num);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ static void select_row(uint8_t row);
|
|||||||
|
|
||||||
static uint8_t mcp23018_reset_loop;
|
static uint8_t mcp23018_reset_loop;
|
||||||
#ifdef RGBLIGHT_ENABLE
|
#ifdef RGBLIGHT_ENABLE
|
||||||
extern i2c_status_t i2c_rgblight;
|
extern bool i2c_rgblight;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void matrix_init_custom(void) {
|
void matrix_init_custom(void) {
|
||||||
@@ -101,7 +101,8 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) {
|
|||||||
rgb_matrix_init(); // re-init driver on reconnect
|
rgb_matrix_init(); // re-init driver on reconnect
|
||||||
#endif
|
#endif
|
||||||
#ifdef RGBLIGHT_ENABLE
|
#ifdef RGBLIGHT_ENABLE
|
||||||
i2c_rgblight = 0x20; // re-enable rgb light
|
i2c_rgblight = true; // re-enable rgb light
|
||||||
|
rgblight_init();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user