FastLED 3.7.8
Loading...
Searching...
No Matches
types.h
1#ifndef TYPES_H
2#define TYPES_H
3
4#include "led_sysdefs.h"
5
6FASTLED_NAMESPACE_BEGIN
7
8#if defined(__AVR__)
9typedef int cycle_t;
10#else
11typedef int64_t cycle_t;
12#endif
13
14FASTLED_NAMESPACE_END
15
16#endif // TYPES_H
Determines which platform system definitions to include.