Olivier ARCHER
Olivier ARCHER
How is declared your array ? is it `double myArray[][]`, or `double[][] myArray` ? From my tests, the debugger works better with `double myArray[][]`, but give error `Cannot evaluate because...
Surprisingly, it was little hard to produce a minimal exemple: Using instance variable for `array_ok`and `array_nok` seems to be mandatory. ```java public class Test { private double[][] array_nok; private double...
I can see that PR #5535 change the implementation of OTA backend in `esphome/components/ota/ota_backend*`. So some parts of this PR should be rewritten once #5535 as been merged. ```c++ error_code...
Sorry for the confusion. https and http works for esp32. I've edited the PR description with http/https support matrix.
@nerijus Previous commit has fixed https for 8266.
@paulsteigel , `ota_http` works well with mqtt, you just have to have a mqtt broker defined in an `mqtt:` section in your yaml. `ota.http.flash` is just an action, that can...
@kevireilly , yes, I plan to add this feature to `ota_http`. This will be done with the Arduino/NoFuss protocol (see https://github.com/esphome/feature-requests/issues/801#issuecomment-1806571447). But for now, I'm waiting for the main esphome...
@paulsteigel , can you double check that your `firmware.bin` file is *not* `firmware-factory.bin` file ? The `Error code (131) writing binary data to flash` is frequent in this case. A...
@paulsteigel , I've downloaded your firmware, and checked it. It's invalid, because it start with byte `0xFF`, not `0xE9`. So it's probably a `firmware-factory.bin` file, not a `firmware.bin` file.
@paulsteigel , https://thiennhienviet.org.vn/firmwares/phanquan.bin give me a 404 ( not found ) when using a web browser or wget. Are you sure the file exists ? I remember that an user...