当前位置:网站首页>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,
边栏推荐
猜你喜欢
随机推荐
[数学]线性代数复习总结
PromptBERT: Improving BERT Sentence Embeddings with Prompts
一些投资的底线
pytorch构建YOLOV7网络结构
基于STM32的RFID-RC522门禁系统
error TS1219: Experimental support for decorators解决
ESP8266-Arduino编程实例-LittleFS及数据上传
etcd实现大规模服务治理应用实战
swagger @ApiModel @ApiModelProperty注解属性说明「建议收藏」
updatexml、extractvalue和floor报错注入原理
LeetCode 1047 删除字符串中的所有相邻重复项
新西藏,在云上!
转行软件测试,你关心的都在这
无知大V秀智商!台积电南京厂扩产28nm将击垮大陆晶圆代工业?无稽之谈!
论文写作全攻略|一篇学术科研论文该怎么写
2022暑假 动态规划总结
H265码流RTP封装方式详解
搭建自己的以图搜图系统 (一):10 行代码以图搜图
【中标麒麟系统Your trial is EXPIRED and no VALID licens 关闭弹窗】
C # CLI (common language infrastructure)


![[数学基础]高等数学相关概念学习](/img/59/3e1608de63c60201b3e7aaaf032d42.png)





