Files
fahnen_esp32/.pio/libdeps/esp01_1m/FastLED/examples/Pintest/Pintest.ino

11 lines
364 B
C++

/// @file Pintest.ino
/// @brief Pintest example with platform detection
/// @example Pintest.ino
// Platform detection logic
#if !defined(__AVR_ATtiny88__) && !defined(ARDUINO_attinyxy4) && !defined(ARDUINO_attinyxy6) && (defined(__AVR__) || (defined(__arm__) && defined(TEENSYDUINO)))
#include "Pintest.h"
#else
#include "platforms/sketch_fake.hpp"
#endif