diff options
| author | Ryan | 2024-10-12 01:10:02 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-12 01:10:02 +0200 |
| commit | 6129af93f497077a994e8e41473e2bd3d6ea5e67 (patch) | |
| tree | 68de5019339936b281fe337a5d8e5273f8b7dec5 /drivers/led | |
| parent | a10e7cc8582114267ab474a0049619b510199322 (diff) | |
Rename RGB and HSV structs (#24471)
Diffstat (limited to 'drivers/led')
| -rw-r--r-- | drivers/led/apa102.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/led/apa102.c b/drivers/led/apa102.c index 0cf0ecb401..050609263d 100644 --- a/drivers/led/apa102.c +++ b/drivers/led/apa102.c @@ -53,8 +53,8 @@ io_wait; \ } while (0) -rgb_led_t apa102_leds[APA102_LED_COUNT]; -uint8_t apa102_led_brightness = APA102_DEFAULT_BRIGHTNESS; +rgb_t apa102_leds[APA102_LED_COUNT]; +uint8_t apa102_led_brightness = APA102_DEFAULT_BRIGHTNESS; static void apa102_send_byte(uint8_t byte) { APA102_SEND_BIT(byte, 7); |