FastLED
3.9.15
Loading...
Searching...
No Matches
convert.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
stdint.h
>
4
5
// Conversion from FastLED timings to the type found in datasheets.
6
inline
void
convert_fastled_timings_to_timedeltas
(uint16_t T1, uint16_t T2,
7
uint16_t T3, uint16_t *T0H,
8
uint16_t *T0L, uint16_t *T1H,
9
uint16_t *T1L) {
10
*T0H = T1;
11
*T0L = T2 + T3;
12
*T1H = T1 + T2;
13
*T1L = T3;
14
}
convert_fastled_timings_to_timedeltas
void convert_fastled_timings_to_timedeltas(uint16_t T1, uint16_t T2, uint16_t T3, uint16_t *T0H, uint16_t *T0L, uint16_t *T1H, uint16_t *T1L)
Definition
convert.h:6
stdint.h
fl
convert.h
Generated on Thu Jun 5 2025 04:29:38 for FastLED by
1.13.2