将数据写入Arduino板载EEPROM

时间:2013-03-11 22:49:41

标签: arduino electronics eeprom

我目前正在尝试编写一个函数来将数据存储到我的Arduino上的EEPROM中。到目前为止,我只是编写一个指定的字符串,然后在程序首次运行时将其读回。我试图将字符串的长度存储为第一个字节,我的代码如下;

#include <EEPROM.h>
#include <LiquidCrystal.h>

LiquidCrystal lcd(8, 13, 9, 4, 5, 6, 7);
char string[] = "Test";

void setup() {
    lcd.begin( 16, 2 );
    for (int i = 1; i <= EEPROM.read(0); i++){ // Here is my error
      lcd.write(EEPROM.read(i));
    }
    delay(5000);
    EEPROM_write(string);
}

void loop() {
}

void EEPROM_write(char data[])
{
    lcd.clear();
    int length = sizeof(data); // I think my problem originates here!
    for (int i = 0; i <= length + 2; i++){
        if (i == 0){
            EEPROM.write(i, length); // Am I storing the length correctly?
            lcd.write(length);
        }
        else{
            byte character = data[i - 1];
            EEPROM.write(i, character);
            lcd.write(character);
        }
    }
}

我遇到的问题是当我读取EEPROM的第一个字节时,我得到了假设的长度值。但是,循环只运行三次。我已经在我的代码中评论了一些感兴趣的点,但错误在哪里?

1 个答案:

答案 0 :(得分:3)

我认为你确实是正确的。试着写这个:

// Function takes a void pointer to data, and how much to write (no other way to know)
// Could also take a starting address, and return the size of the reach chunk, to be more generic
void EEPROM_write(void * data, byte datasize) {
   int addr = 0;
   EEPROM.write(addr++, datasize);
   for (int i=0; i<datasize; i++) {
      EEPROM.write(addr++, data[i]);
   }
}

你会这样称呼:

char[] stringToWrite = "Test";
EEPROM_write(stringToWrite, strlen(stringToWrite));

然后阅读:

int addr = 0;
byte datasize = EEPROM.read(addr++);
char stringToRead[0x20];          // allocate enough space for the string here!
char * readLoc = stringToRead;
for (int i=0;i<datasize; i++) {
    readLoc = EEPROM.read(addr++);
    readLoc++;
}

请注意,这不是使用为Arduino开发的String类:阅读和写作会有所不同。但上述内容适用于char数组字符串。

但是请注意,虽然现在EEPROM_write() 看起来像通用,但事实并非如此,因为addr已经被编码。它只能将数据写入EEPROM的开头。