Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/ruby-on-rails-4/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
通过以太网屏蔽从Arduino SD卡读取文本文件_Arduino_Sd Card_Read Write - Fatal编程技术网

通过以太网屏蔽从Arduino SD卡读取文本文件

通过以太网屏蔽从Arduino SD卡读取文本文件,arduino,sd-card,read-write,Arduino,Sd Card,Read Write,我正在进行一个Arduino项目,我已经完成了连接传感器、收集一周数据并保存数据的部分。我现在的问题是把这些数据放到一个网站上绘制图表。我必须通过以太网为项目发送数据,所以我想我会将SD卡上文本文件中的信息发送到我的计算机,并从那里开始。问题是我无法打开文本文件并在串行监视器中查看它。这是密码 /* SD card read/write This example shows how to read and write data to and from an SD card fil

我正在进行一个Arduino项目,我已经完成了连接传感器、收集一周数据并保存数据的部分。我现在的问题是把这些数据放到一个网站上绘制图表。我必须通过以太网为项目发送数据,所以我想我会将SD卡上文本文件中的信息发送到我的计算机,并从那里开始。问题是我无法打开文本文件并在串行监视器中查看它。这是密码

    /*
  SD card read/write

 This example shows how to read and write data to and from an SD card file
 The circuit:
 * SD card attached to SPI bus as follows:
 ** MOSI - pin 11
 ** MISO - pin 12
 ** CLK - pin 13
 ** CS - pin 4

 created   Nov 2010
 by David A. Mellis
 modified 9 Apr 2012
 by Tom Igoe

 This example code is in the public domain.

 */

#include <SPI.h>
#include <SD.h>

File myFile;

void setup() {
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }


  Serial.print("Initializing SD card...");

  if (!SD.begin(4)) {
    Serial.println("initialization failed!");
    return;
  }
  Serial.println("initialization done.");

  // open the file. note that only one file can be open at a time,
  // so you have to close this one before opening another.
  myFile = SD.open("test.txt", FILE_WRITE);

  // if the file opened okay, write to it:
  if (myFile) {
    Serial.print("Writing to test.txt...");
    myFile.println("testing 1, 2, 3.");
    // close the file:
    myFile.close();
    Serial.println("done.");
  } else {
    // if the file didn't open, print an error:
    Serial.println("error opening test.txt");
  }

  // re-open the file for reading:
  myFile = SD.open("test.txt");
  if (myFile) {
    Serial.println("test.txt:");

    // read from the file until there's nothing else in it:
    while (myFile.available()) {
      Serial.write(myFile.read());
    }
    // close the file:
    myFile.close();
  } else {
    // if the file didn't open, print an error:
    Serial.println("error opening test.txt");
  }
}

void loop() {
  // nothing happens after setup
}
我是否遗漏了读取数据的一些更精细的语义?正在读取的数据是否太大?大约66MB的文件


任何方向都会很棒

2个问题:阅读是否会在序列号上产生错误消息,或者“什么都没有”发生?另外,您是否尝试过缩短文件名?我不确定,但我认为您使用的是某种形式的FAT文件系统,它将文件名限制为8.3字符格式。唯一产生的错误是在设置中编码的错误,没有实际错误发生。关于FAT格式的文件名,你说得对,让我更改一下。我完全忘记了。
2015-11-25 12:16:10 758
2015-11-25 12:16:12 757
2015-11-25 12:16:14 757
2015-11-25 12:16:16 758