Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions wled00/colors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ void colorFromUint32(uint32_t in, bool secondary)
col[1] = in >> 8 & 0xFF;
col[2] = in & 0xFF;
}

char* m = (char*)malloc(100);
char* x = (char*)malloc(100);
int temp;
}

//load a color without affecting the white channel
Expand Down
3 changes: 3 additions & 0 deletions wled00/overlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ void initCronixie()
strip.getSegment(0).grouping = 1;
cronixieInit = false;
}

int x;
int y = overlayCurrent * x;
}


Expand Down