EEPROM:update()

從 YFRobotwiki
跳到: 導覽搜尋
EEPROM

update()


描述

寫一個位元組到EEPROM。該值如果不同於已保存在同一地址的值時才會寫入(更新該地址的值)。


語法

EEPROM.update(address, value)


參數

address: 寫入的位置,從0開始 (int 整型)

value: 寫入的值,值範圍0~255 (byte型)


返回值


注意

EEPROM一次寫入需要3.3ms才能完成。EEPROM內存有100000次 寫/擦除的固定生命周期, 所以如果寫入的數據不經常更改的話,使用該函數代替write()函數可以節省使用周期。


示例

#include <EEPROM.h>

void setup()
{
  for (int i = 0; i < 255; i++) {
    // this performs as EEPROM.write(i, i)
    EEPROM.update(i, i);
  }
  for (int i = 0; i < 255; i++) {
    // write value "12" to cell 3 only the first time
    // will not write the cell the remaining 254 times
    EEPROM.update(3, 12);
  }
}

void loop()
{
}


返回EEPROM庫

返回Arduino庫菜單

返回首頁

更多建議和問題歡迎反饋至 YFRobot論壇