我正在尝试打开一个文件,我将该名称计算为字符串。但是,它只是给我编译错误,如图所示。
for(int i=1;;i++)
{
String temp = "data";
temp.concat(i);
temp.concat(".csv");
if(!SD.exists(temp))//no matching function for call to sdclass::exists(String&)
{
datur = SD.open(temp,FILE_WRITE);
}
}
我是一个java人,所以我不明白为什么这不起作用。我尝试了一些字符串对象方法,但似乎没有工作。我在arduino编程方面有点新,但我更了解java。这个for循环的要点是每次arduino重新启动时都要创建一个新文件。
答案 0 :(得分:11)
SD.open
需要一个字符数组而不是String
,您需要先使用toCharArray
方法进行转换。尝试
char filename[temp.length()+1];
temp.toCharArray(filename, sizeof(filename));
if(!SD.exists(filename)) {
...
}
完成代码:
for(int i=1;;i++)
{
String temp = "data";
temp.concat(i);
temp.concat(".csv");
char filename[temp.length()+1];
temp.toCharArray(filename, sizeof(filename));
if(!SD.exists(filename))
{
datur = SD.open(filename,FILE_WRITE);
break;
}
}
你会发现许多函数采用char数组而不是字符串。