@copydoc fill_gradient_RGB()
| 306 | |
| 307 | /// @copydoc fill_gradient_RGB() |
| 308 | inline void fill_gradient_RGB(fl::span<CRGB> leds, const CRGB &c1, |
| 309 | const CRGB &c2) FL_NOEXCEPT { |
| 310 | fill_gradient_RGB(leds.data(), static_cast<u16>(leds.size()), c1, c2); |
| 311 | } |
| 312 | |
| 313 | /// @copydoc fill_gradient_RGB() |
| 314 | inline void fill_gradient_RGB(fl::span<CRGB> leds, const CRGB &c1, |
no test coverage detected