Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // importujeme knihovnu
  2. #include <EEPROM.h>
  3.  
  4. void setup()
  5. {
  6.   //postupně zapíše hodnotu na adresy 0 až 5
  7.   EEPROM.write(0,35);
  8.   EEPROM.write(1,47);
  9.   EEPROM.write(2,85);
  10.   EEPROM.write(3,96);
  11.   EEPROM.write(4,17);
  12. }
  13.  
  14. void loop(){}