This commit is contained in:
parent
83753a5f81
commit
6df64d0d31
@ -396,11 +396,9 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
|
|||||||
CJSON(DMXStartLED,dmx[F("start-led")]);
|
CJSON(DMXStartLED,dmx[F("start-led")]);
|
||||||
|
|
||||||
JsonArray dmx_fixmap = dmx[F("fixmap")];
|
JsonArray dmx_fixmap = dmx[F("fixmap")];
|
||||||
it = 0;
|
for (int i = 0; i < dmx_fixmap.size(); i++) {
|
||||||
for (int i : dmx_fixmap) {
|
if (i > 14) break;
|
||||||
if (it > 14) break;
|
|
||||||
CJSON(DMXFixtureMap[i],dmx_fixmap[i]);
|
CJSON(DMXFixtureMap[i],dmx_fixmap[i]);
|
||||||
it++;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user