Advertisement
Guest User

Brasilrobotics

a guest
Oct 22nd, 2012
6,350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <EEPROM.h>
  2. void setup()
  3. {
  4.  
  5. }
  6.  
  7. void loop()
  8. {
  9.        
  10.   EEPROM.write(0,1 ); //EEPROM.write(endereço,valor gravado) *(adress/value)
  11.   EEPROM.write(1,2 );
  12.   EEPROM.write(2,3 );
  13.   EEPROM.write(1023,233 );
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement