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