“EEPROM:write()”的版本间的差异
来自YFRobotwiki
| 第41行: | 第41行: | ||
} | } | ||
| − | |||
| + | </pre> | ||
| + | |||
| + | |} | ||
---- | ---- | ||
2015年7月13日 (一) 21:34的版本
|
write()
描述 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()
{
}
|