当前位置:网站首页>ESP8266-Arduino programming example-EEPROM read and write
ESP8266-Arduino programming example-EEPROM read and write
2022-07-29 20:32:00 【Vision & IoT Intelligence】
EEPROM read/write
EEPROM (also known as E2PROM), which stands for Electrically Erasable Programmable Read Only Memory, is a non-volatile memory used in computers that is integrated in microcontrollers used in smart cards and remote keyless systems, andOther electronic devices store relatively small amounts of data by allowing individual bytes to be erased and reprogrammed.
EEPROMs are organized as arrays of floating gate transistors.EEPROM can be programmed and erased in-circuit by applying special programming signals.Originally, EEPROMs were limited to single-byte operations, which made them slower, but modern EEPROMs allow multi-byte page operations.EEPROMs have a limited erasing and reprogramming lifetime, now reaching one million operations in modern EEPROMs.In frequently reprogrammed EEPROMs, EEPROM lifetime is an important design consideration.
ESP8266 has 512 bytes of internal EEPROM which can be useful if you need to store some settings like IP address or some Wifi details.
1. Hardware preparation
- ESP8266 NodeMCU development board
- A data cable
2. Software preparation
- Arduino IDE or VSCode + PlatformIO
In the previous article, I gave a detailed introduction to how to build the ESP8266 development environment, please refer to:
- Development environment-based on Arduino IDE
- Development environment construction-based on PlatformIO
The pin introduction of ESP8266 NodeMCU is described in detail in the previous article, please refer to:
3,
边栏推荐
猜你喜欢
随机推荐
LeetCode #88.合并两个有序数组
Typescript使用修饰器混合方法到类
无代码开发平台角色设置入门教程
ACM学习书籍简介
【AutoSAR 八 OS】
面试突击:为什么 TCP 需要 3 次握手?
cpolar应用实例之助力航运客户远程办公
Build your own image search system (1): 10 lines of code to search images by image
2.5w字 + 36 张图爆肝操作系统面试题 学不吐你
Gesture password unlock WeChat applet project source code
OpenCV - 图像二值化处理 腐蚀膨胀 边缘检测 轮廓识别
GNOME将在Secure Boot被禁用时向用户发出警告 并准备提供安全帮助
[数学]考研数学公式定理大总结
C#_OpenCV使用相机
经验分享|编写简单易用的在线产品手册小妙招
手势密码解锁微信小程序项目源码
【AutoSAR 一 概述】
【组成原理 五 系统总线】
小程序onlaunch和onload(小程序onunload)
线程池 ThreadPoolExecutor 详解









