| 332 | } |
| 333 | |
| 334 | virtual void endShowLeds(void* data) FL_NOEXCEPT { |
| 335 | // By default recieves the integer that beginShowLeds() emitted. |
| 336 | //For async controllers this should be used to signal the controller |
| 337 | // to begin transmitting the current frame to the leds. |
| 338 | uintptr_t d = fl::ptr_to_int(data); |
| 339 | setDither(static_cast<fl::u8>(d)); |
| 340 | } |
| 341 | |
| 342 | /// The color corrction to use for this controller, expressed as a CRGB object |
| 343 | /// @param correction the color correction to set |
no test coverage detected