usermod/word-clock-matrix: Fix build

I've just assigned an arbitrary ID number.  The ID system should
get removed entirely; we don't want to have to change a base
system header to add each module.
This commit is contained in:
Will Miles 2025-03-28 20:15:36 -04:00
parent 1492f1ce89
commit af1a966986
2 changed files with 4 additions and 4 deletions

View File

@ -36,8 +36,8 @@ public:
//other segments are text //other segments are text
for (int i = 1; i < 10; i++) for (int i = 1; i < 10; i++)
{ {
Segment &seg = strip.getSegment(i); Segment &text_seg = strip.getSegment(i);
seg.colors[0] = ((0 << 24) | ((0 & 0xFF) << 16) | ((190 & 0xFF) << 8) | ((180 & 0xFF))); text_seg.colors[0] = ((0 << 24) | ((0 & 0xFF) << 16) | ((190 & 0xFF) << 8) | ((180 & 0xFF)));
strip.getSegment(i).setOption(0, true); strip.getSegment(i).setOption(0, true);
strip.setBrightness(64); strip.setBrightness(64);
} }
@ -67,7 +67,7 @@ public:
//strip.resetSegments(); //strip.resetSegments();
selectWordSegments(true); selectWordSegments(true);
colorUpdated(CALL_MODE_FX_CHANGED); colorUpdated(CALL_MODE_FX_CHANGED);
savePreset(13, false); savePreset(13);
selectWordSegments(false); selectWordSegments(false);
//strip.getSegment(0).setOption(0, true); //strip.getSegment(0).setOption(0, true);
strip.getSegment(0).setOption(2, true); strip.getSegment(0).setOption(2, true);
@ -329,7 +329,7 @@ public:
uint16_t getId() uint16_t getId()
{ {
return USERMOD_ID_WORD_CLOCK_MATRIX; return 500;
} }