11 lines
276 B
C++
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
|