Get E1.31 interface working, but only with a hard-coded test configuration for now

This commit is contained in:
Adam Honse
2019-10-21 00:52:32 -05:00
parent 74bdfff195
commit 4d2585f58c
5 changed files with 127 additions and 9 deletions

View File

@@ -47,10 +47,15 @@ void DetectE131Controllers(std::vector<RGBController*> &rgb_controllers)
dev.name = "Test";
dev.type = ZONE_TYPE_SINGLE;
dev.start_universe = 1;
dev.start_channel = 1;
dev.num_leds = 30;
dev.start_universe = 20;
dev.start_channel = 500;
std::vector<E131Device> devices;
devices.push_back(dev);
new_controller = new RGBController_E131();
new_controller = new RGBController_E131(devices);
rgb_controllers.push_back(new_controller);
#if 0