@brief Check if an encoder selector identifies a UCS7604 variant
| 117 | |
| 118 | /// @brief Check if an encoder selector identifies a UCS7604 variant |
| 119 | static bool isUCS7604(fl::ClocklessEncoder encoder) { |
| 120 | return encoder == fl::ClocklessEncoder::CLOCKLESS_ENCODER_UCS7604_8BIT || |
| 121 | encoder == fl::ClocklessEncoder::CLOCKLESS_ENCODER_UCS7604_16BIT || |
| 122 | encoder == fl::ClocklessEncoder::CLOCKLESS_ENCODER_UCS7604_16BIT_1600; |
| 123 | } |
| 124 | |
| 125 | /// @brief Build expected UCS7604 encoded bytes from LED data |
| 126 | /// @param leds LED data span |
no outgoing calls
no test coverage detected