| 70 | /// @note Works across all FastLED platforms (AVR, ESP32, STM32, host, etc.) |
| 71 | struct SerialReader { |
| 72 | int available() const { return fl::available(); } |
| 73 | int read() { return fl::read(); } |
| 74 | }; |
| 75 |
nothing calls this directly
no test coverage detected