You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -200,6 +206,7 @@ This class has to implements several functions and works in a more detailed way:
200
206
201
207
* The `canUpload()`and `upload()` methods work similar while the `upload()` method is called multiple times to create, append data and close the new file.
202
208
209
+
203
210
## File upload
204
211
205
212
By opening <http://webserver/$upload.htm> you can easily upload files by dragging them over the drop area.
@@ -238,6 +245,7 @@ You can see on the Serial output that one filesystem write error is reported.
238
245
Please be patient and wait for the upload ending even when writing to the filesystem is disabled
239
246
it maybe take more than a minute.
240
247
248
+
241
249
## Registering a special handler for "file not found"
242
250
243
251
Any other incoming request that was not handled by the registered plug-ins above can be detected by registering
@@ -253,6 +261,7 @@ Any other incoming request that was not handled by the registered plug-ins above
253
261
This allows sending back an "friendly" result for the browser. Here a simple html page is created from a static string.
254
262
You can easily change the html code in the file `builtinfiles.h`.
255
263
264
+
256
265
## customizations
257
266
258
267
You may like to change the hostname and the timezone in the lines:
@@ -262,10 +271,19 @@ You may like to change the hostname and the timezone in the lines:
262
271
> #define TIMEZONE "CET-1CEST,M3.5.0,M10.5.0/3"
263
272
> ```
264
273
274
+
265
275
## Troubleshooting
266
276
267
277
Have a look in the Serial output for some additional runtime information.
268
278
279
+
280
+
## Changes
281
+
282
+
* 2024-08-02 -- Fixing for board implementation 3.0.4 ff.
283
+
* 2024-08-02 -- Support for FAT
284
+
* 2024-08-02 -- Tested with Arduino Nano ESP32
285
+
286
+
269
287
## Contribute
270
288
271
289
To know how to contribute to this project, see [How to contribute.](https://github.com/espressif/arduino-esp32/blob/master/CONTRIBUTING.rst)
@@ -274,11 +292,13 @@ If you have any **feedback** or **issue** to report on this example/library, ple
274
292
275
293
Before creating a new issue, be sure to try Troubleshooting and check if the same issue was already created by someone else.
276
294
295
+
277
296
## Resources
278
297
279
298
* Official ESP32 Forum: [Link](https://esp32.com)
280
299
* Arduino-ESP32 Official Repository: [espressif/arduino-esp32](https://github.com/espressif/arduino-esp32)
281
300
* ESP32 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf)
282
301
* ESP32-S2 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf)
302
+
* ESP32-S3 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-s3_datasheet_en.pdf)
283
303
* ESP32-C3 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf)
284
304
* Official ESP-IDF documentation: [ESP-IDF](https://idf.espressif.com)
0 commit comments