FastLED 3.9.15
Loading...
Searching...
No Matches
EspI2SDemo.ino
Go to the documentation of this file.
1
2#include "fl/has_define.h"
3
4
5// Platform must be esp32.
6#if !defined(ESP32) || !__has_include("sdkconfig.h")
7#define IS_ESP32_DEV 0
8#else
9
10#include "sdkconfig.h"
11
12#if CONFIG_IDF_TARGET_ESP32
13#define IS_ESP32_DEV 1
14#else
15#define IS_ESP32_DEV 0
16#endif
17#endif
18
19
20
21#if IS_ESP32_DEV
22#include "EspI2SDemo.h"
23#else
24#include "platforms/sketch_fake.hpp"
25#endif