{"id":100818,"date":"2020-12-23T13:58:56","date_gmt":"2020-12-23T13:58:56","guid":{"rendered":"https:\/\/randomnerdtutorials.com\/?p=100818"},"modified":"2020-12-23T15:37:11","modified_gmt":"2020-12-23T15:37:11","slug":"esp32-vs-code-platformio-spiffs","status":"publish","type":"post","link":"https:\/\/randomnerdtutorials.com\/esp32-vs-code-platformio-spiffs\/","title":{"rendered":"ESP32 with VS Code and PlatformIO: Upload Files to Filesystem (SPIFFS)"},"content":{"rendered":"\n<p>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.<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/ESP32-SPIFFS-VSCode-PlatformIO.jpg?resize=1200%2C675&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"ESP32 with VS Code and PlatformIO: Upload Files to Filesystem SPIFFS\" class=\"wp-image-100861\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/ESP32-SPIFFS-VSCode-PlatformIO.jpg?w=1280&amp;quality=100&amp;strip=all&amp;ssl=1 1280w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/ESP32-SPIFFS-VSCode-PlatformIO.jpg?resize=300%2C169&amp;quality=100&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/ESP32-SPIFFS-VSCode-PlatformIO.jpg?resize=1024%2C576&amp;quality=100&amp;strip=all&amp;ssl=1 1024w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/ESP32-SPIFFS-VSCode-PlatformIO.jpg?resize=768%2C432&amp;quality=100&amp;strip=all&amp;ssl=1 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure><\/div>\n\n\n\n<p>If you&#8217;re using Arduino IDE follow this tutorial instead: <a href=\"https:\/\/randomnerdtutorials.com\/install-esp32-filesystem-uploader-arduino-ide\/\">Install ESP32 Filesystem Uploader in Arduino IDE<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing SPIFFS<\/h2>\n\n\n\n<p>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.<\/p>\n\n\n\n<p>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\u2019t support directories, so everything is saved on a flat structure.<\/p>\n\n\n\n<p>Using SPIFFS with the&nbsp;<a href=\"https:\/\/makeradvisor.com\/tools\/esp32-dev-board-wi-fi-bluetooth\/\" target=\"_blank\" rel=\"noreferrer noopener\">ESP32 board<\/a>&nbsp;is specially useful to:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Create configuration files with settings;<\/li><li>Save data permanently;<\/li><li>Create files to save small amounts of data instead of using a microSD card;<\/li><li>Save HTML, CSS and JavaScript files to build a web server;<\/li><li>Save images, figures and icons;<\/li><li>And much more.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Upload Files to ESP32 SPIFFS<\/h2>\n\n\n\n<p>The files you want to upload to the ESP32 filesystem should be placed in a folder called <em>data<\/em> under the project folder. For you to understand how everything works, we&#8217;ll upload a <span class=\"rnthl rntliteral\">.txt<\/span> file with some random text. You can upload any other file type.<\/p>\n\n\n\n<p>If you&#8217;re not familiar with VS Code + PlatformIO, follow the next tutorial first:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/randomnerdtutorials.com\/vs-code-platformio-ide-esp32-esp8266-arduino\/\">Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266<\/a><\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Creating a data Folder<\/h3>\n\n\n\n<p>Create a folder called <em>data <\/em>inside your project folder. This can be done on VS Code.<br>With your mouse, select the project folder you\u2019re working on. Click on the <strong>New Folder<\/strong> icon to create a new folder.<\/p>\n\n\n\n<p>This new folder must be called <em>data<\/em>, otherwise, it won\u2019t work.<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"760\" height=\"273\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-data-folder-VS-Code-PIO-ESP32-SPIFFS.png?resize=760%2C273&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Create a data folder VS Code PlatformIO ESP32\" class=\"wp-image-100821\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-data-folder-VS-Code-PIO-ESP32-SPIFFS.png?w=760&amp;quality=100&amp;strip=all&amp;ssl=1 760w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-data-folder-VS-Code-PIO-ESP32-SPIFFS.png?resize=300%2C108&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 760px) 100vw, 760px\" \/><\/figure><\/div>\n\n\n\n<p>Then, select the newly created <em>data <\/em>folder and create the files you want to upload by clicking on the <strong>New File<\/strong> icon. In this example, we&#8217;ll create a file called <span class=\"rnthl rntliteral\">text.txt<\/span>. You can create and upload any other file types like <em>.html<\/em>, <em>.css<\/em> or <em>.js<\/em> files, for example.<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"743\" height=\"291\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-files-under-data-folder-VS-Code-PIO-ESP32-SPIFFS.png?resize=743%2C291&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Create files under data folder VS Code with PlatformIO ESP32\" class=\"wp-image-100822\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-files-under-data-folder-VS-Code-PIO-ESP32-SPIFFS.png?w=743&amp;quality=100&amp;strip=all&amp;ssl=1 743w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-files-under-data-folder-VS-Code-PIO-ESP32-SPIFFS.png?resize=300%2C117&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 743px) 100vw, 743px\" \/><\/figure><\/div>\n\n\n\n<p>Write some random text inside that <span class=\"rnthl rntliteral\">.txt<\/span> file.<\/p>\n\n\n\n<p>The <em>data <\/em>folder should be under the project folder and the files you want to upload should be inside the <em>data <\/em>folder. Otherwise, it won&#8217;t work.<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"840\" height=\"307\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-Text-File-VS-Code-PlatformIO-ESP32.jpg?resize=840%2C307&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Create text file VS Code PlatformIO ESP32\" class=\"wp-image-100823\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-Text-File-VS-Code-PlatformIO-ESP32.jpg?w=840&amp;quality=100&amp;strip=all&amp;ssl=1 840w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-Text-File-VS-Code-PlatformIO-ESP32.jpg?resize=300%2C110&amp;quality=100&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Create-Text-File-VS-Code-PlatformIO-ESP32.jpg?resize=768%2C281&amp;quality=100&amp;strip=all&amp;ssl=1 768w\" sizes=\"(max-width: 840px) 100vw, 840px\" \/><\/figure><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Uploading Filesystem Image<\/h3>\n\n\n\n<p>After creating and saving the file or files you want to upload under the <em>data<\/em> folder, follow the next steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Click the PIO icon at the left side bar. The project tasks should open.<\/li><li>Select <strong>env:esp32doit-devkit-v1<\/strong> (it may be slightly different depending on the board you\u2019re using).<\/li><li>Expand the <strong>Platform <\/strong>menu.<\/li><li>Select <strong>Build Filesyste<\/strong>m Image.<\/li><li>Finally, click <strong>Upload Filesystem Image<\/strong>.<\/li><\/ol>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"756\" height=\"421\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-SPIFFS.jpg?resize=756%2C421&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Upload Filesystem Image VS Code PlatformIO ESP32\" class=\"wp-image-100824\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-SPIFFS.jpg?w=756&amp;quality=100&amp;strip=all&amp;ssl=1 756w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-SPIFFS.jpg?resize=300%2C167&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 756px) 100vw, 756px\" \/><\/figure><\/div>\n\n\n\n<p class=\"rntbox rntcred\"><strong>Important: <\/strong> to upload the filesystem image successfully you must close all serial<br>connections (Serial Monitor) with your board.<\/p>\n\n\n\n<p>After a while, you should get a success message.<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"693\" height=\"225\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-success-message.jpg?resize=693%2C225&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"\" class=\"wp-image-100825\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-success-message.jpg?w=693&amp;quality=100&amp;strip=all&amp;ssl=1 693w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-success-message.jpg?resize=300%2C97&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 693px) 100vw, 693px\" \/><\/figure><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Troubleshooting<\/h3>\n\n\n\n<p>Here&#8217;s some common mistakes:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Could not open port &#8220;COMX&#8221; Access is denied.<\/h4>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"686\" height=\"144\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-Access-Denied-Error.jpg?resize=686%2C144&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Upload filesystem image ESP32 VS Code PlatformIO Access Denied Error\" class=\"wp-image-100829\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-Access-Denied-Error.jpg?w=686&amp;quality=100&amp;strip=all&amp;ssl=1 686w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Upload-filesystem-image-ESP32-VS-Code-PlatformIO-Access-Denied-Error.jpg?resize=300%2C63&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 686px) 100vw, 686px\" \/><\/figure><\/div>\n\n\n\n<p>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).<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"698\" height=\"40\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/VS-Code-PlatformIO-Close-Terminal-Window.jpg?resize=698%2C40&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"VS Code PlatformIO Close Terminal Window\" class=\"wp-image-100828\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/VS-Code-PlatformIO-Close-Terminal-Window.jpg?w=698&amp;quality=100&amp;strip=all&amp;ssl=1 698w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/VS-Code-PlatformIO-Close-Terminal-Window.jpg?resize=300%2C17&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 698px) 100vw, 698px\" \/><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Timed out waiting for packet header error<\/h4>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"693\" height=\"228\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/failed-to-upload-code-VS-Code-PlatformIO-packet-header.jpg?resize=693%2C228&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Timed out waiting for packet header error VS Code PlatformIO\" class=\"wp-image-100831\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/failed-to-upload-code-VS-Code-PlatformIO-packet-header.jpg?w=693&amp;quality=100&amp;strip=all&amp;ssl=1 693w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/failed-to-upload-code-VS-Code-PlatformIO-packet-header.jpg?resize=300%2C99&amp;quality=100&amp;strip=all&amp;ssl=1 300w\" sizes=\"(max-width: 693px) 100vw, 693px\" \/><\/figure><\/div>\n\n\n\n<p>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.<\/p>\n\n\n\n<p>To solve this issue permanently, read the following article: <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/randomnerdtutorials.com\/solved-failed-to-connect-to-esp32-timed-out-waiting-for-packet-header\/\">[SOLVED] Failed to connect to ESP32: Timed out waiting for packet header<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Testing<\/h2>\n\n\n\n<p>Now, let\u2019s just check if the file was actually saved into the ESP32 filesystem. Copy the following code to the <span class=\"rnthl rntliteral\">main.cpp<\/span> file and upload it to your board.<\/p>\n\n\n<pre style=\"max-height: 40em; margin-bottom: 20px;\"><code class=\"language-c\">\/*********\n  Rui Santos\n  Complete project details at https:\/\/RandomNerdTutorials.com\/esp32-vs-code-platformio-spiffs\/  \n*********\/\n\n#include &lt;Arduino.h&gt;\n#include &quot;SPIFFS.h&quot;\n \nvoid setup() {\n  Serial.begin(9600);\n  \n  if(!SPIFFS.begin(true)){\n    Serial.println(&quot;An Error has occurred while mounting SPIFFS&quot;);\n    return;\n  }\n  \n  File file = SPIFFS.open(&quot;\/text.txt&quot;);\n  if(!file){\n    Serial.println(&quot;Failed to open file for reading&quot;);\n    return;\n  }\n  \n  Serial.println(&quot;File Content:&quot;);\n  while(file.available()){\n    Serial.write(file.read());\n  }\n  file.close();\n}\n \nvoid loop() {\n\n}\n<\/code><\/pre>\n\t<p style=\"text-align:center\"><a class=\"rntwhite\" href=\"https:\/\/github.com\/RuiSantosdotme\/Random-Nerd-Tutorials\/raw\/master\/Projects\/ESP32\/VS_Code\/VS_Code_SPIFFS_Test.ino\" target=\"_blank\">View raw code<\/a><\/p>\n\n\n\n<p>You may need to change the following line depending on the name of your file.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>File file = SPIFFS.open(\"\/text.txt\");<\/code><\/pre>\n\n\n\n<p>Open the Serial Monitor and it should print the content of your file.<\/p>\n\n\n\n<div class=\"wp-block-image is-style-default\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1067\" height=\"284\" src=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Reading-Content-of-File-ESP32-VSCode-PlatformIO.jpg?resize=1067%2C284&#038;quality=100&#038;strip=all&#038;ssl=1\" alt=\"Reading File Content SPIFFS ESP32 VS Code PlatformIO\" class=\"wp-image-100834\" srcset=\"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Reading-Content-of-File-ESP32-VSCode-PlatformIO.jpg?w=1067&amp;quality=100&amp;strip=all&amp;ssl=1 1067w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Reading-Content-of-File-ESP32-VSCode-PlatformIO.jpg?resize=300%2C80&amp;quality=100&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Reading-Content-of-File-ESP32-VSCode-PlatformIO.jpg?resize=1024%2C273&amp;quality=100&amp;strip=all&amp;ssl=1 1024w, https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/Reading-Content-of-File-ESP32-VSCode-PlatformIO.jpg?resize=768%2C204&amp;quality=100&amp;strip=all&amp;ssl=1 768w\" sizes=\"(max-width: 1067px) 100vw, 1067px\" \/><\/figure><\/div>\n\n\n\n<p>You&#8217;ve successfully uploaded files to the ESP32 filesystem (SPIFFS) using VS Code + PlatformIO.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p>With this tutorial you&#8217;ve learned how to upload files to the ESP32 filesystem (SPIFFS) using VS Code + PlatformIO. It is quick and easy.<\/p>\n\n\n\n<p>This can be specially useful to upload HTML, CSS and JavaScript files to build web server projects with the ESP32 boards.<\/p>\n\n\n\n<p>We have a similar tutorial for the ESP8266 NodeMCU: <a href=\"https:\/\/randomnerdtutorials.com\/esp8266-nodemcu-vs-code-platformio-littlefs\/\">ESP8266 NodeMCU with VS Code and PlatformIO: Upload Files to Filesystem (LittleFS)<\/a><\/p>\n\n\n\n<p>Learn more about the ESP32 with our resources:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong><a href=\"https:\/\/randomnerdtutorials.com\/learn-esp32-with-arduino-ide\/\">Learn ESP32 with Arduino IDE (eBook + video course)<\/a><\/strong><\/li><li><a href=\"https:\/\/randomnerdtutorials.com\/micropython-programming-with-esp32-and-esp8266\/\">MicroPython Programming with Arduino IDE (eBook)<\/a><\/li><li><a href=\"https:\/\/randomnerdtutorials.com\/projects-esp32\/\">More ESP32 Tutorials and Projects\u2026<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>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 &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"ESP32 with VS Code and PlatformIO: Upload Files to Filesystem (SPIFFS)\" class=\"read-more button\" href=\"https:\/\/randomnerdtutorials.com\/esp32-vs-code-platformio-spiffs\/#more-100818\" aria-label=\"Read more about ESP32 with VS Code and PlatformIO: Upload Files to Filesystem (SPIFFS)\">CONTINUE READING \u00bb<\/a><\/p>\n","protected":false},"author":5,"featured_media":100861,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[276,281,277,299,264],"tags":[],"class_list":["post-100818","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-esp32","category-esp32-project","category-esp32-arduino-ide","category-0-esp32","category-project"],"aioseo_notices":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/randomnerdtutorials.com\/wp-content\/uploads\/2020\/12\/ESP32-SPIFFS-VSCode-PlatformIO.jpg?fit=1280%2C720&quality=100&strip=all&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/posts\/100818","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/comments?post=100818"}],"version-history":[{"count":0,"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/posts\/100818\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/media\/100861"}],"wp:attachment":[{"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/media?parent=100818"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/categories?post=100818"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/randomnerdtutorials.com\/wp-json\/wp\/v2\/tags?post=100818"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}