“EEPROM:EEPROM”的版本间的差异

来自YFRobotwiki
跳转至: 导航搜索
 
第10行: 第10行:
 
<font color="orange" size="+1">'''描述'''</font>
 
<font color="orange" size="+1">'''描述'''</font>
  
This operator allows using the identifier `EEPROM` like an array. EEPROM cells can be read and written directly using this method.
+
这个操作符允许像一个数组一样使用标识符'EEPROM'。使用这种方式可以直接对EEPROM单元进行读取和写入操作。
  
  
第20行: 第20行:
 
<font color="orange" size="+1">'''参数'''</font>
 
<font color="orange" size="+1">'''参数'''</font>
  
address: the location to read/write from, starting from 0 (int)
+
address: / 写的位置,从0开始 (int 整型)
  
  

2015年7月14日 (二) 17:46的最后版本

EEPROM

EEPROM[]


描述

这个操作符允许像一个数组一样使用标识符'EEPROM'。使用这种方式可以直接对EEPROM单元进行读取和写入操作。


语法

EEPROM[address]


参数

address: 读/写的位置,从0开始 (int 整型)


返回值

A reference to the EEPROM cell


示例

#include <EEPROM.h>

void setup(){

  unsigned char val;

  //Read first EEPROM cell.
  val = EEPROM[ 0 ];

  //Write first EEPROM cell.
  EEPROM[ 0 ] = val;

  //Compare contents
  if( val == EEPROM[ 0 ] ){
    //Do something...
  }
}

void loop(){ /* Empty loop */ }


返回EEPROM库

返回Arduino库菜单

返回首页

更多建议和问题欢迎反馈至 YFRobot论坛