Add interface for NZXT Hue+ based on KeyboardVisualizer code and add support for UDP LED strips. Clean up LEDStrip code.

This commit is contained in:
Adam Honse
2019-08-27 12:23:13 -05:00
parent 63bf13faac
commit a8c83e5688
9 changed files with 468 additions and 65 deletions

View File

@@ -80,14 +80,6 @@ void DetectLEDStripControllers(std::vector<RGBController*> &rgb_controllers)
new_controller = new RGBController_LEDStrip(new_ledstrip);
rgb_controllers.push_back(new_controller);
}
else if (strcmp(argument, "xmas") == 0)
{
}
else if (strcmp(argument, "hueplus") == 0)
{
}
}
}
}