FastLED 3.9.7
Loading...
Searching...
No Matches
types.h
1#pragma once
2
3#include "led_sysdefs.h"
4#include "fl/namespace.h"
5
6namespace fl {
7
8#if defined(__AVR__)
9typedef int cycle_t;
10#else
11typedef int64_t cycle_t;
12#endif
13
14}
15
Determines which platform system definitions to include.
Implements the FastLED namespace macros.
Implements a simple red square effect for 2D LED grids.
Definition crgb.h:16
int64_t cycle_t
8.8 fixed point (signed) value
Definition types.h:11