lbernstone
lbernstone
Looks like the [mappings have changed](https://docs.espressif.com/projects/esp-idf/en/release-v5.1/esp32/api-reference/network/esp_wifi.html#_CPPv425esp_wifi_set_max_tx_power6int8_t). The [enum](https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/src/WiFiGeneric.h#L46-L62) needs to be fixed. ``` Mapping Table {Power, max_tx_power} = {{8, 2}, {20, 5}, {28, 7}, {34, 8}, {44, 11}, {52, 13},...
Once again, programming error. Don't pass Strings (or any large object) around, use pointers. USBCOM is not part of the code here. For help with 3rd party libraries, you need...
What does your html look like? That error happens when the file size is not provided.
The [OTAWebUpdater example](https://github.com/espressif/arduino-esp32/blob/master/libraries/Update/examples/OTAWebUpdater/html.h#L22-L23) shows how to get the browser to add the file size to your request, and then have the Update library use the file size.
I'm not going to update that library. It probably just needs to be retired. Here's a patch for OTAWebUpdater.ino . I'll submit it as a PR once I have some...
These are intended to be examples of esp32 code, not html. Those filenames are the format that the file system extension uses, so will likely be the filenames anyhow.
You shouldn't use SPIFFS any more, it is highly inefficient. LittleFS has replaced it.
What issue? That SPIFFS doesn't provide the full amount of space in a partition or the original issue on this ticket? AFAIK, SPIFFS is no longer under development. Please note,...
SPIFFS.totalBytes does not return the partition size, but the maximum amount of data that could be stored (this comes from upstream). The code really should be changed to get the...
LittleFS gives the partition size for LittleFS.totalBytes(), so it should just work. If you want to submit a PR to fix this library, then please take into consideration my comments...