Tobias Blum
Tobias Blum
Hi @VeniceNerd, you may try to call http://Mc_lighting_ip/start_config_ap to enable the configuration AccessPoint like on first setup. Another option would be http://Mc_lighting_ip/reset_wlan to reset credentials that should also bring up...
Hi @VeniceNerd, unfortunately this option didnt work well in all versions, the AP worked but the webserver didn't react. Maybe you could try the other option (temporarily disabling the wifi...
Hi @ChrisYOLO, you can configure NUMLEDs via API. Have a look here: https://github.com/toblum/McLighting/wiki/Software-installation#configure-pin--rgb-mode--numleds-only-for-v221-or-later Greetings
Hi @Hypfer, that's correct. You need to user hexadecimal values. Each position two digits. After 99 comes 9A, so to set LED 100 to white you would use 9AFFFFFF. Regards...
What value did you set for the number of LEDs? What is returned when you call http://mc_lighting_ip/esp_status
Oh, sorry, I was wrong. With this command it's indeed only possible to adress only 99 LEDs, because the number is handles as a integer here: https://github.com/toblum/McLighting/blob/090bddd32b2705f5edb7ec999cb26c50dc470151/Arduino/McLighting/request_handlers.h#L141 Here you can...
@donotoverdriveit Do you see anything in the serial output when the restart occurs?
@Fusseldieb That sounds interesting, but this might better be implemented in the animation library and just used be McLighting.
Hi @guardiande, the strip is initialied here: https://github.com/toblum/McLighting/blob/eaa9f814d841ff6336f1789ac6e85775514b50ea/Arduino/McLighting/McLighting.ino#L293 You may just set the color to 0,0,0 by default. That should work,
Yes, I was wrong. The function readStateFS() does the restoration of the saved values when powering up, so you may be able to override the standard behaviour here: https://github.com/toblum/McLighting/blob/eaa9f814d841ff6336f1789ac6e85775514b50ea/Arduino/McLighting/request_handlers.h#L1432