diff options
author | Erez Zukerman <bulk@ezuk.org> | 2017-10-31 11:33:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-31 11:33:09 -0700 |
commit | bc98b0d9eb5eb1a4df140ab6e2158904e5e100e5 (patch) | |
tree | 1b2386448402419c79dfa8b447598f7cd2c9141d /keyboards/ergodox_ez/matrix.c | |
parent | 38261920a9c082ceede0d9d31e3a94b9f520e7c8 (diff) | |
parent | 0bb457e573e85b3b8f364efdff1eb0c5e4717df9 (diff) |
Merge pull request #1915 from dondelelcaro/ergodox_ez_left_leds
Ergodox ez left leds support
Diffstat (limited to 'keyboards/ergodox_ez/matrix.c')
-rw-r--r-- | keyboards/ergodox_ez/matrix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index b743cf0d6b..70efb43d8e 100644 --- a/keyboards/ergodox_ez/matrix.c +++ b/keyboards/ergodox_ez/matrix.c @@ -202,6 +202,9 @@ uint8_t matrix_scan(void) } #endif +#ifdef LEFT_LEDS + mcp23018_status = ergodox_left_leds_update(); +#endif // LEFT_LEDS for (uint8_t i = 0; i < MATRIX_ROWS; i++) { select_row(i); wait_us(30); // without this wait read unstable value. |