“EEPROM:read()”的版本间的差异
来自YFRobotwiki
(未显示1个用户的3个中间版本) | |||
第10行: | 第10行: | ||
<font color="orange" size="+1">'''描述'''</font> | <font color="orange" size="+1">'''描述'''</font> | ||
− | + | 从EEPROM中读取一个字节。从没被写过的位置默认值为255。 | |
− | <font color="orange" size="+1">''' | + | |
+ | <font color="orange" size="+1">''' 语法'''</font> | ||
EEPROM.read(address) | EEPROM.read(address) | ||
− | |||
− | + | <font color="orange" size="+1">'''参数'''</font> | |
− | + | address: 读取的位置,从0开始 (int 整型) | |
− | |||
− | <font color="orange" size="+1">''' | + | <font color="orange" size="+1">''' 返回值'''</font> |
+ | |||
+ | 存储在该位置的值 (byte型) | ||
+ | |||
+ | |||
+ | <font color="orange" size="+1">'''示例'''</font> | ||
<pre style="color:dimgray"> | <pre style="color:dimgray"> | ||
第62行: | 第66行: | ||
[[EEPROM库|返回EEPROM库]] | [[EEPROM库|返回EEPROM库]] | ||
− | [[Arduino库|返回Arduino库 | + | [[Arduino库|返回Arduino库 菜单]] |
[[首页|返回首页]] | [[首页|返回首页]] | ||
+ | |||
+ | 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛] |
2015年7月14日 (二) 10:42的最后版本
read()
描述 从EEPROM中读取一个字节。从没被写过的位置默认值为255。
EEPROM.read(address)
address: 读取的位置,从0开始 (int 整型)
存储在该位置的值 (byte型)
#include <EEPROM.h> int a = 0; int value; void setup() { Serial.begin(9600); } void loop() { value = EEPROM.read(a); Serial.print(a); Serial.print("\t"); Serial.print(value); Serial.println(); a = a + 1; if (a == 512) a = 0; delay(500); } |
更多建议和问题欢迎反馈至 YFRobot论坛