-
Notifications
You must be signed in to change notification settings - Fork 42
/
6.1.9-SDCreate.ino
61 lines (53 loc) · 1.31 KB
/
6.1.9-SDCreate.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
OpenJumper SD Module
创建文件
www.openjumper.com
*/
#include <SD.h>
File myFile;
void setup()
{
//我们在2号引脚上连接一个按键模块,用以控制程序开始
pinMode(2, INPUT_PULLUP);
while (digitalRead(2))
{
}
// 初始化串口通信
Serial.begin(9600);
Serial.print("Initializing SD card...");
// Arduino上的SS引脚(UNO的10号引脚, Mega的53号引脚)
// 必须保持在输出模式,否则SD库无法工作
pinMode(10, OUTPUT);
if (!SD.begin(4))
{
Serial.println("initialization failed!");
return;
}
Serial.println("initialization done.");
if (SD.exists("arduino.txt"))
{
Serial.println("arduino.txt exists.");
}
else
{
Serial.println("arduino.txt doesn't exist.");
}
// 打开一个新文件,并立即关闭。
// 如果指定文件不存在,将用该名称创建一个文件
Serial.println("Creating arduino.txt...");
SD.open("arduino.txt", FILE_WRITE);
myFile.close();
// 检查文件是否存在
if (SD.exists("arduino.txt"))
{
Serial.println("arduino.txt exists.");
}
else
{
Serial.println("arduino.txt doesn't exist.");
}
}
void loop()
{
// 该程序只运行一次,所以在loop中没有其他操作
}