I've tried to configure you're app but I can only get my strip to work on a single monitor, all of the LEDs are working.
I have 2x 1080p monitors and my MBP running. It should only be configured for the external displays. Picture: https://cl.ly/1f3y2Z2A452T
152 leds, 16 vertical, 30 horizontal per display
struct DisplayAssignment displays[] = {
{ 1920, 1080 },
{ 1920, 1080 }
};
struct LEDStrand strands[] = {
//ledID, len, dispID,startX,startY, dir, division
{ 0, 30, 0, 1920, 1080, DIR_LEFT, 1920 / 30 },
{ 30, 16, 0, 0, 1080, DIR_UP, 1080 / 16 },
{ 46, 30, 0, 0, 0, DIR_RIGHT, 1920 / 30 },
{ 76, 30, 1, 0, 0, DIR_RIGHT, 1920 / 30 },
{ 106, 16, 1, 1920, 0, DIR_DOWN, 1080 / 16 },
{ 122, 30, 1, 1920, 1080, DIR_LEFT, 1920 / 30 }
};
I've tried to configure you're app but I can only get my strip to work on a single monitor, all of the LEDs are working.
I have 2x 1080p monitors and my MBP running. It should only be configured for the external displays. Picture: https://cl.ly/1f3y2Z2A452T
152 leds, 16 vertical, 30 horizontal per display