| 127 | // LPC_SCT_CAPTURE not available on ESP32 (LPC8xx peripheral). See FastLED#3015. |
| 128 | template <> |
| 129 | fl::shared_ptr<RxDevice> RxDevice::create<RxDeviceType::LPC_SCT_CAPTURE>(int pin) FL_NOEXCEPT { |
| 130 | (void)pin; |
| 131 | return fl::make_shared<DummyRxDevice>("LPC_SCT_CAPTURE RX not supported on ESP32"); |
| 132 | } |
| 133 | |
| 134 | // DEFAULT maps to RMT on ESP32 |
| 135 | template <> |