diff options
| author | Joel Challis <git@zvecr.com> | 2019-10-29 22:53:11 +0000 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-10-29 15:53:11 -0700 |
| commit | 64b7cfe735339193ae78fe0f13029b0e027af7a7 (patch) | |
| tree | 2fcad9781c786061dae9b4dec7d799f7072ad600 /drivers/avr/ws2812_i2c.c | |
| parent | 908aede957a66e65d37601fa67548c369137b57b (diff) | |
| download | qmk_firmware-64b7cfe735339193ae78fe0f13029b0e027af7a7.tar.gz qmk_firmware-64b7cfe735339193ae78fe0f13029b0e027af7a7.zip | |
Refactor ps2avrgb i2c ws2812 to core (#7183)
* Refactor ps2avrgb i2c ws2812 to core
* Refactor jj40 to use ws2812 i2c driver
* Refactor ps2avrgb template to use ws2812 i2c driver
* Add ws2812 stub files
* clang-format and driver config
* Add ws2812 driver docs
* Fix default config values
* Update tmk_core/protocol/vusb/main.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'drivers/avr/ws2812_i2c.c')
| -rw-r--r-- | drivers/avr/ws2812_i2c.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/drivers/avr/ws2812_i2c.c b/drivers/avr/ws2812_i2c.c new file mode 100644 index 000000000..8525a026c --- /dev/null +++ b/drivers/avr/ws2812_i2c.c | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #include "ws2812.h" | ||
| 2 | #include "i2c_master.h" | ||
| 3 | |||
| 4 | #ifndef WS2812_ADDRESS | ||
| 5 | # define WS2812_ADDRESS 0xb0 | ||
| 6 | #endif | ||
| 7 | |||
| 8 | #ifndef WS2812_TIMEOUT | ||
| 9 | # define WS2812_TIMEOUT 100 | ||
| 10 | #endif | ||
| 11 | |||
| 12 | void ws2812_init(void) { i2c_init(); } | ||
| 13 | |||
| 14 | // Setleds for standard RGB | ||
| 15 | void ws2812_setleds(LED_TYPE *ledarray, uint16_t leds) { | ||
| 16 | static bool s_init = false; | ||
| 17 | if (!s_init) { | ||
| 18 | ws2812_init(); | ||
| 19 | s_init = true; | ||
| 20 | } | ||
| 21 | |||
| 22 | i2c_transmit(WS2812_ADDRESS, (uint8_t *)ledarray, sizeof(LED_TYPE) * leds, WS2812_TIMEOUT); | ||
| 23 | } | ||
| 24 | |||
| 25 | // Setleds for SK6812RGBW | ||
| 26 | void ws2812_setleds_rgbw(LED_TYPE *ledarray, uint16_t leds) { | ||
| 27 | // not supported - for now error out if its enabled | ||
| 28 | #ifdef RGBW | ||
| 29 | # error "RGBW not supported" | ||
| 30 | #endif | ||
| 31 | } | ||
