Sequences can be different length now

This commit is contained in:
Oleksiy
2025-03-11 14:58:42 +02:00
parent 9840f23f77
commit f7b2150acf
4 changed files with 100 additions and 184 deletions

View File

@ -37,3 +37,5 @@ const byte clockOutPin = 13;
const byte outsPins[6] = {6, 11, 7, 10, 8, 9};
bool rotateScreen = true;
*/
#define bitFlip(value, bit) ((value) ^ (1UL << (bit)))