Files
klubhaus-doorbell/libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino
2026-02-12 00:45:31 -08:00

11 lines
319 B
C++

/// @file ParallelOutputDemo.ino
/// @brief ParallelOutputDemo example with platform detection
/// @example ParallelOutputDemo.ino
// Platform detection logic
#if defined(CORE_TEENSY) && defined(TEENSYDUINO) && defined(HAS_PORTDC)
#include "ParallelOutputDemo.h"
#else
#include "platforms/sketch_fake.hpp"
#endif