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

11 lines
300 B
C++

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