加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
6.1.4-EEPROMClear.ino 362 Bytes
一键复制 编辑 原始数据 按行查看 历史
奈何col 提交于 2017-07-21 15:43 . 20170720
/* * EEPROM Clear
* Sets all of the bytes of the EEPROM to 0.
* This example code is in the public domain.
*/
#include <EEPROM.h>
void setup()
{
// 让EEPROM的512字节内容全部清零
for (int i = 0; i < 512; i++)
EEPROM.write(i, 0);
// 清零工作完成后,将L灯点亮,提示EEPROM清零完成
digitalWrite(13, HIGH);
}
void loop(){
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化