2way host-firmware comm

This commit is contained in:
Martin Bauer
2021-11-27 19:04:08 +01:00
parent e1807360f8
commit 11db5763eb
4 changed files with 137 additions and 60 deletions

View File

@@ -8,15 +8,15 @@
struct EffectRandomTwoColorInterpolationConfig
{
int cycleDurationMs;
int32_t cycleDurationMs;
bool startWithExisting;
int numSegments;
ColorHSV color1;
ColorHSV color2;
int32_t numSegments;
bool hue1Random;
bool hue2Random;
ColorHSV color1;
ColorHSV color2;
};
template <typename TLedStrip>