MyFile.read()
myFile.read();
作用
读取SD卡中的文件,务必确认已经通过open()函数打开了文件
参数
示例
读取sd卡中的文件并串口返回
if (dataFile) {
while (dataFile.available()) {
Serial.write(dataFile.read());
}
dataFile.close();
}
其它
- 实例化
- SD :
- myFile :
myFile.read();
作用
读取SD卡中的文件,务必确认已经通过open()函数打开了文件
参数
示例
读取sd卡中的文件并串口返回
if (dataFile) {
while (dataFile.available()) {
Serial.write(dataFile.read());
}
dataFile.close();
}
其它