latest test

This commit is contained in:
2024-03-04 18:19:15 -06:00
parent 17ef48ff82
commit 181dcc98ca
4 changed files with 141 additions and 48 deletions

View File

@ -3,12 +3,19 @@
#define DEBUG
// Amount of color channels per pixel - i.e. RGB = 3, RGBW = 4
#define PIXEL_SIZE 3
#define LIGHTTEST
// Total LED count
// set to 128*8 for 4 channel, 170*8 for 3 channel
#define MAX_LEDS 170*8
#define MAX_LEDS 128*8
//#define RGBW_MODE
// Amount of color channels per pixel - i.e. RGB = 3, RGBW = 4
#ifdef RGBW_MODE
#define PIXEL_SIZE 4
#else
#define PIXEL_SIZE 3
#endif
// LED driver chip model - depends on strip
#define LED_TYPE WS2812