Language | Libraries | Comparison
Write a byte to the EEPROM.
address: the location to write to, from 0 to 511 (int)
value: the value to write, from 0 to 255 (byte)
none
#include <EEPROM.h> void setup() { for (int i = 0; i < 512; i++) EEPROM.write(i, i); } void loop() { }
Corrections, suggestions, and new documentation should be posted to the Forum.