Facebook
From Lousy Earthworm, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 348
  1. #include <avr/eeprom.h>
  2.  
  3. struct config_t
  4. {
  5.   String phoneNumber;
  6.   String pin;
  7. } configuration;
  8.  
  9.  
  10.  eeprom_write_block((const void*)&configuration, (void*)77, sizeof(configuration));
  11.  
  12.  eeprom_read_block((void*)&configuration, (void*)77, sizeof(configuration));
  13.  
  14.  Serial.print(configuration.pin);

Replies to Untitled rss

Title Name Language When
Nowe funkcje Crippled Owl c 6 Years ago.