MyFile.read()

来自Microduino Wikipedia
跳转至: 导航搜索

myFile.read();


作用

读取SD卡中的文件,务必确认已经通过open()函数打开了文件


参数


示例

读取sd卡中的文件并串口返回

  if (dataFile) {
    while (dataFile.available()) {
      Serial.write(dataFile.read());
    }
    dataFile.close();
  }

其它

  • myFile :

返回SD模块语法手册