Allow for server side controller resizing

* Save sizes profile on the server
* Update RGBController_Network size on the client
This commit is contained in:
Chris 2022-06-06 22:11:59 +10:00 committed by Adam Honse
parent 3f79cc41c8
commit f3eac499d4
3 changed files with 11 additions and 3 deletions

View file

@ -24,6 +24,9 @@ void RGBController_Network::SetupZones()
void RGBController_Network::ResizeZone(int zone, int new_size)
{
client->SendRequest_RGBController_ResizeZone(dev_idx, zone, new_size);
client->SendRequest_ControllerData(dev_idx);
client->WaitOnControllerData();
}
void RGBController_Network::DeviceUpdateLEDs()