当前位置:网站首页>ESP8266-Arduino programming example-LittleFS and data upload
ESP8266-Arduino programming example-LittleFS and data upload
2022-07-29 20:37:00 【Visual & al intelligence】
LittleFS and data upload
1. Introduction to LittleFS
LittleFS is a lightweight file system created for microcontrollers that allows access to flash memory like in a standard file system on a computer, but is simpler and more limited.Supports reading, writing, closing and deleting files.
Combining ESP8266 with SPIFFS can easily store data:
- Create a configuration file with settings;
- Save data permanently;
- Create files to hold small amounts of data instead of using a microSD card;
- Save HTML and CSS files to build a web server;
- Save images, numbers and icons;
- …
This article will detail how to upload LittleFS data and how to use LittleFS.
2. Upload LittleFS in Arduino IDE
Arduino IDE does not support uploading LittleFS data by default, and you need to install a plug-in.The specific steps are as follows:
**First step:** Download the plugin, ESP8266LittleFS-2.6.0.zip
**Step 2:**Unzip and install.
After the plugin is downloaded, unzip it and copy the ESP8266LittleFS directory to the tools directory of the Arduino IDE installation directory:
边栏推荐
- H264码流RTP封装方式详解
- m10
- "Additional price" can not exchange for safety, the death of Lexus LM, whose fault is it?
- easyExce模板填充生成Excel的实际操作,多sheet页处理
- TDengine 落地协鑫能科,数百亿数据压缩至 600GB
- updatexml, extractvalue and floor error injection principle
- 【AutoSAR 一 概述】
- Typescript模块的导入导出与继承
- 使用MD5加密后的字符串存密码安全吗?你不得不了解的Hash算法
- HMS Core音频编辑服务音源分离与空间音频渲染,助力快速进入3D音频的世界
猜你喜欢
随机推荐
ESP8266-Arduino编程实例-EEPROM读写
小程序onlaunch和onload(小程序onunload)
直播预约 | 如何通过MLOps解放和提升AI生产力?
ds1302——Bin brother 51
Build your own image search system (1): 10 lines of code to search images by image
exdark数据集转yolo格式(仅供参考)
LeetCode #88.合并两个有序数组
【AutoSAR 八 OS】
LeetCode 1047 删除字符串中的所有相邻重复项
腾讯安全发布 Tencent Cloud EdgeOne,为企业出海打造安全加速一体化服务
C # CLI (common language infrastructure)
敏捷组织 | 企业克服数字化浪潮冲击的路径
HbuilderX打包app,Hbuilder怎么打包app,H5打包成app,H5怎么打包成app「建议收藏」
[数学]考研数学公式定理大总结
error TS1219: Experimental support for decorators解决
easyExce模板填充生成Excel的实际操作,多sheet页处理
Detailed explanation of design ideas of webUI test framework
使用MD5加密后的字符串存密码安全吗?你不得不了解的Hash算法
【体系结构 三 流水线技术】
【二叉树】好叶子节点对的数量









