当前位置:网站首页>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:
边栏推荐
猜你喜欢
随机推荐
线程池 ThreadPoolExecutor 详解
软件测试面试屡屡失败,面试官总是说逻辑思维混乱,怎么办?
手势密码解锁微信小程序项目源码
低代码搭建高效管理房屋检测系统案例分析
【体系结构 三 流水线技术】
[数学]必备基本知识
OAuth2认证
2.1寸旋钮屏结合6.86寸串口屏助力集成灶智能升级|启明智显
yarn的安装和使用(yarn安装mysql)
cv2 imread()函数[通俗易懂]
PostgreSQL语句大全
C# CLI(公共语言基础结构)
Xcode如何利用预览(Preview)让SwiftUI视图快速适配不同尺寸的设备
[Binary tree] The number of good leaf node pairs
C language advanced enumeration and joint
并发编程学习笔记 之 常用并发容器的概念及使用方法
【AutoSAR 九 C/S原理架构】
C语言学习书籍(提高篇)
C语言进阶 —— 枚举与联合
无代码开发平台权限设置入门教程









