0%

[ESP32]将外部资源(如html)上传到spiffs文件系统中

Learn how to upload files to the ESP32 board filesystem (SPIFFS) using VS Code with the PlatformIO IDE extension (quick and easy). Using the filesystem with the ESP32 can be useful to save HTML, CSS and JavaScript files to build a web server instead of having to write everything inside the Arduino sketch.

ESP32 with VS Code and PlatformIO: Upload Files to Filesystem SPIFFS

If you’re using Arduino IDE follow this tutorial instead: Install ESP32 Filesystem Uploader in Arduino IDE.

Introducing SPIFFS

The ESP32 contains a Serial Peripheral Interface Flash File System (SPIFFS). SPIFFS is a lightweight filesystem created for microcontrollers with a flash chip, which are connected by SPI bus, like the ESP32 flash memory.

SPIFFS lets you access the flash memory like you would do in a normal filesystem in your computer, but simpler and more limited. You can read, write, close, and delete files. SPIFFS doesn’t support directories, so everything is saved on a flat structure.

Using SPIFFS with the ESP32 board is specially useful to:

  • Create configuration files with settings;
  • Save data permanently;
  • Create files to save small amounts of data instead of using a microSD card;
  • Save HTML, CSS and JavaScript files to build a web server;
  • Save images, figures and icons;
  • And much more.

Upload Files to ESP32 SPIFFS

The files you want to upload to the ESP32 filesystem should be placed in a folder called data under the project folder. For you to understand how everything works, we’ll upload a .txt file with some random text. You can upload any other file type.

If you’re not familiar with VS Code + PlatformIO, follow the next tutorial first:

Creating a data Folder

Create a folder called data inside your project folder. This can be done on VS Code.
With your mouse, select the project folder you’re working on. Click on the New Folder icon to create a new folder.

This new folder must be called data, otherwise, it won’t work.

Create a data folder VS Code PlatformIO ESP32

Then, select the newly created data folder and create the files you want to upload by clicking on the New File icon. In this example, we’ll create a file called text.txt. You can create and upload any other file types like .html, .css or .js files, for example.

Create files under data folder VS Code with PlatformIO ESP32

Write some random text inside that .txt file.

The data folder should be under the project folder and the files you want to upload should be inside the data folder. Otherwise, it won’t work.

Create text file VS Code PlatformIO ESP32

Uploading Filesystem Image

After creating and saving the file or files you want to upload under the data folder, follow the next steps:

  1. Click the PIO icon at the left side bar. The project tasks should open.
  2. Select env:esp32doit-devkit-v1 (it may be slightly different depending on the board you’re using).
  3. Expand the Platform menu.
  4. Select Build Filesystem Image.
  5. Finally, click Upload Filesystem Image.

Upload Filesystem Image VS Code PlatformIO ESP32

Important: to upload the filesystem image successfully you must close all serial
connections (Serial Monitor) with your board.

After a while, you should get a success message.

img

Troubleshooting

Here’s some common mistakes:

Could not open port “COMX” Access is denied.

Upload filesystem image ESP32 VS Code PlatformIO Access Denied Error

This error means that you have a serial connection opened with your board in VS Code or in any other program. Close any program that might be using the board serial port, and make sure you close all serial connections in VS Code (click on the recycle bin icon on the terminal console).

VS Code PlatformIO Close Terminal Window

Timed out waiting for packet header error

Timed out waiting for packet header error VS Code PlatformIO

If you start seeing a lot of dots on the debugging window and the filesystem image fails to upload, you need to press the on-board boot button once you start seeing the dots.

To solve this issue permanently, read the following article:

Testing

Now, let’s just check if the file was actually saved into the ESP32 filesystem. Copy the following code to the main.cpp file and upload it to your board.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*********
Rui Santos
Complete project details at https://RandomNerdTutorials.com/esp32-vs-code-platformio-spiffs/
*********/

#include <Arduino.h>
#include "SPIFFS.h"

void setup() {
Serial.begin(9600);

if(!SPIFFS.begin(true)){
Serial.println("An Error has occurred while mounting SPIFFS");
return;
}

File file = SPIFFS.open("/text.txt");
if(!file){
Serial.println("Failed to open file for reading");
return;
}

Serial.println("File Content:");
while(file.available()){
Serial.write(file.read());
}
file.close();
}

void loop() {

}

View raw code

You may need to change the following line depending on the name of your file.

1
File file = SPIFFS.open("/text.txt");

Open the Serial Monitor and it should print the content of your file.

Reading File Content SPIFFS ESP32 VS Code PlatformIO

You’ve successfully uploaded files to the ESP32 filesystem (SPIFFS) using VS Code + PlatformIO.

Wrapping Up

With this tutorial you’ve learned how to upload files to the ESP32 filesystem (SPIFFS) using VS Code + PlatformIO. It is quick and easy.

This can be specially useful to upload HTML, CSS and JavaScript files to build web server projects with the ESP32 boards.

We have a similar tutorial for the ESP8266 NodeMCU: ESP8266 NodeMCU with VS Code and PlatformIO: Upload Files to Filesystem (LittleFS)

Learn more about the ESP32 with our resources: