EEPROM:write()
来自YFRobotwiki
|
read() 描述 Write a byte to the EEPROM. Syntax EEPROM.write(address, value) Parameters address: the location to write to, starting from 0 (int) value: the value to write, from 0 to 255 (byte) Returns none Example
#include <EEPROM.h>
void setup()
{
for (int i = 0; i < 255; i++)
EEPROM.write(i, i);
}
void loop()
{
}
|}
----
[[EEPROM库|返回EEPROM库]]
[[Arduino库|返回Arduino库列表]]
[[首页|返回首页]]
|