Domenico Silletti

Results 6 comments of Domenico Silletti

Good point, I moved all the settings from ENV variables to cluster-override.conf file, and it works adding this section: ``` dashboard { default_password = "mypassword" default_username = "admin" listeners {...

thank you @lbernstone , correct, the example was missing the reset_provisioned parameter for the SoftAP case. The sketch I am using is a copy of the provided example: https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFiProv/examples/WiFiProv/WiFiProv.ino So...

OK found the solution, it's needed to add the "password" key value to the qr code json. This works perfectly: ``` {"ver":"v1","name":"PROV_test","pop":"abcd1234","transport":"softap","password":"testpassword"} ``` https://espressif.github.io/esp-jumpstart/qrcode.html?data={%22ver%22:%22v1%22,%22name%22:%22PROV_test%22,%22pop%22:%22abcd1234%22,%22transport%22:%22softap%22,%22password%22:%22testpassword%22} so it's required to fix ```...

Confirmed, all issues solved (tested with both RSI, BBANDS) editing these 2 lines in ta_utility.h and recompiling. #define TA_IS_ZERO(v) (((-0.00000001)

P.S. I understand that keepalive is responsible for disconnecting in this case, so client.connected() will return true up to ~2*keepalive time, but the publish and mqtt loop functions need a...

@GDev-4664 The workaround I applied is to create another task to periodically check the MQTT connection status and handle reconnection, this way the main task will not be blocked.