We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee8319 commit 404824fCopy full SHA for 404824f
Applications/Sequencer/SequenceMeta.cpp
@@ -23,8 +23,8 @@ void SequenceMeta::New(uint8_t tracks)
23
24
this->tracks.clear();
25
this->tracks.reserve(tracks);
26
- constexpr float hueStep = 1.0f / 16.0f;
27
- uint8_t hueIndex = MatrixOS::SYS::Millis() % 16;
+ constexpr float hueStep = 1.0f / 64.0f;
+ uint8_t hueIndex = MatrixOS::SYS::Micros() % 64;
28
float hue = hueIndex * hueStep;
29
color = Color::HsvToRgb(hue, 1.0f, 1.0f);
30
clockOutput = false;
0 commit comments