FastLED 3.6.0
Loading...
Searching...
No Matches
platforms.h
Go to the documentation of this file.
1#ifndef __INC_PLATFORMS_H
2#define __INC_PLATFORMS_H
3
4#include "FastLED.h"
5
6#include "fastled_config.h"
7
10
11#if defined(NRF51)
12#include "platforms/arm/nrf51/fastled_arm_nrf51.h"
13#elif defined(NRF52_SERIES)
14#include "platforms/arm/nrf52/fastled_arm_nrf52.h"
15#elif defined(__MK20DX128__) || defined(__MK20DX256__)
16// Include k20/T3 headers
17#include "platforms/arm/k20/fastled_arm_k20.h"
18#elif defined(__MK66FX1M0__) || defined(__MK64FX512__)
19// Include k66/T3.6 headers
20#include "platforms/arm/k66/fastled_arm_k66.h"
21#elif defined(__MKL26Z64__)
22// Include kl26/T-LC headers
23#include "platforms/arm/kl26/fastled_arm_kl26.h"
24#elif defined(__IMXRT1062__)
25// teensy4
26#include "platforms/arm/mxrt1062/fastled_arm_mxrt1062.h"
27#elif defined(__SAM3X8E__)
28// Include sam/due headers
29#include "platforms/arm/sam/fastled_arm_sam.h"
30#elif defined(STM32F10X_MD) || defined(__STM32F1__) || defined(STM32F2XX) || defined(STM32F1)
31#include "platforms/arm/stm32/fastled_arm_stm32.h"
32#elif defined(__SAMD21G18A__) || defined(__SAMD21J18A__) || defined(__SAMD21E17A__) || defined(__SAMD21E18A__)
33#include "platforms/arm/d21/fastled_arm_d21.h"
34#elif defined(__SAMD51G19A__) || defined(__SAMD51J19A__) || defined(__SAME51J19A__) || defined(__SAMD51P19A__)
35#include "platforms/arm/d51/fastled_arm_d51.h"
36#elif defined(ARDUINO_ARCH_RP2040) // not sure a pico-sdk define for this
37// RP2040 (Raspberry Pi Pico etc)
38#include "platforms/arm/rp2040/fastled_arm_rp2040.h"
39#elif defined(ESP8266)
40#include "platforms/esp/8266/fastled_esp8266.h"
41#elif defined(ESP32)
42#include "platforms/esp/32/fastled_esp32.h"
43#elif defined(ARDUINO_ARCH_APOLLO3)
44#include "platforms/apollo3/fastled_apollo3.h"
45#else
46// AVR platforms
47#include "platforms/avr/fastled_avr.h"
48#endif
49
50#endif
central include file for FastLED, defines the CFastLED class/object
Contains definitions that can be used to configure FastLED at compile time.