kitesurfer1404 / WS2812FX

WS2812 FX Library for Arduino and ESP8266

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Webinterface custom mode show of out order at the webpage

AlejandroSantosG opened this issue · comments

Hello Guys, I am trying to made a custom mode:

uint8_t myModes[] = {FX_MODE_STATIC, FX_MODE_RAINBOW, FX_MODE_LARSON_SCANNER};

And the webpage show, the right names for the custom mode, but the efect activated it´s just the order as the number mode at the library:

#define FX_MODE_STATIC 0
#define FX_MODE_BLINK 1
#define FX_MODE_BREATH 2

Custom Mode:

FX_MODE_STATIC Activate FX_MODE_STATIC 0
FX_MODE_RAINBOW Activate FX_MODE_BLINK 1
FX_MODE_LARSON_SCANNER Actiavte FX_MODE_BREATH 2

Could you help to fix it please, thanks

What sketch are you working with?

Edit: Oh never mind, I see you're using the esp8266_webinterface sketch. I think you've uncovered a bug. The web interface is sending back a mode number, when it should be sending back a mode name. I'll have to look into that.

There is indeed a bug in the esp8266_webinterface sketch that expresses itself when myModes[] is used. To fix, go to line 231 in the esp8266_webinterface.ino file and change it from this:

ws2812fx.setMode(tmp % ws2812fx.getModeCount());

to this:

uint8_t new_mode = sizeof(myModes) > 0 ? myModes[tmp % sizeof(myModes)] : tmp % ws2812fx.getModeCount();
ws2812fx.setMode(new_mode);

Let me know if that works for you.

Thanks, now it's working perfectly, Thank you very much!