Limit maximum LEDs per channel to 40

This commit is contained in:
Adam Honse
2022-02-04 12:46:04 -06:00
parent 616a11694d
commit dd508d94de

View File

@@ -209,7 +209,7 @@ void RGBController_ZalmanZSync::SetupZones()
| can support is 200. | | can support is 200. |
\*-------------------------------------------------*/ \*-------------------------------------------------*/
zones[channel_idx].leds_min = 0; zones[channel_idx].leds_min = 0;
zones[channel_idx].leds_max = 204; zones[channel_idx].leds_max = 40;
if(first_run) if(first_run)
{ {