| 113 | // FLEXPWM not available on ESP32 |
| 114 | template <> |
| 115 | fl::shared_ptr<RxDevice> RxDevice::create<RxDeviceType::FLEXPWM>(int pin) FL_NOEXCEPT { |
| 116 | (void)pin; |
| 117 | return fl::make_shared<DummyRxDevice>("FLEXPWM RX not supported on ESP32"); |
| 118 | } |
| 119 | |
| 120 | // FLEXIO not available on ESP32 (Teensy 4.x peripheral). See FastLED#2764. |
| 121 | template <> |