We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a65294b commit 3bcbcfaCopy full SHA for 3bcbcfa
ESPixelStick.ino
@@ -174,13 +174,6 @@ void setup() {
174
// Configure and start the web server
175
initWeb();
176
177
- // Setup E1.31
178
- if (config.multicast)
179
- e131.begin(E131_MULTICAST, config.universe,
180
- uniLast - config.universe + 1);
181
- else
182
- e131.begin(E131_UNICAST);
183
-
184
// Configure the outputs
185
#if defined (ESPS_MODE_PIXEL)
186
pixels.setPin(DATA_PIN);
@@ -189,6 +182,13 @@ void setup() {
189
#else
190
updateConfig();
191
#endif
+
+ // Setup E1.31
187
+ if (config.multicast)
188
+ e131.begin(E131_MULTICAST, config.universe,
+ uniLast - config.universe + 1);
+ else
+ e131.begin(E131_UNICAST);
192
}
193
194
/////////////////////////////////////////////////////////
0 commit comments