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

11 lines
276 B
C++

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