“SD库”的版本间的差异

来自YFRobotwiki
跳转至: 导航搜索
(以“{| border="0" cellpadding="10" width="100%" |- |width="50%" valign="top" align="left"| Arduino电路板上的单片机自带EEPROM:它是一种当芯片断电时...”为内容创建页面)
 
 
(未显示1个用户的19个中间版本)
第1行: 第1行:
 +
 +
 
{| border="0" cellpadding="10" width="100%"
 
{| border="0" cellpadding="10" width="100%"
 
|-
 
|-
|width="50%" valign="top" align="left"|
+
|width="30%" valign="top" align="left"|
Arduino电路板上的单片机自带EEPROM:它是一种当芯片断电时,里面的内容依然可以保存下来的一种储存器。该库可让您对EEPROM中的字节进行读取和写入。
+
  
 +
SD库允许对SD卡(例如在Arduino Ethernet 扩展板)进行读取或写入操作。它是基于William Greiman的sdfatlib库编写而成。该库文件支持FAT16和FAT32文件系统在标准的SD卡和SDHC卡上。<font color="darkorenge">'''它使用8.3格式(例如:12345678.txt)的短文件名。'''</font>传递到SD库函数的文件名可以包含被正斜杠“/”分隔的路径,例如:"directory/filename.txt"。因为工作目录常常就是SD卡的根目录,所以同一个文件的文件名无论是否包含正斜杠都可以(例如:"/file.txt"相当于"file.txt")。从1.0版本开始,该库支持打开多个文件。
  
|width="30%" valign="top" align="left"|
+
单片机和SD卡之间使用[[SPI库|SPI]](Serial Peripheral Interface,串行外设接口)实现通信,发生在数字引脚 11、12和13(大多数Arduino电路板上)或者50、51和52(Arduino Mega上)。此外,另外一个引脚必须用来选择SD卡。这可以是硬件SS引脚 - 引脚10(大多数Arduino电路板上)或者引脚53(Arduino Mega上)-或者SD.begin()调用的另一个指定引脚。'''注意 即使你不使用硬件SS引脚,必须将它作为输出引脚保留下来否则SD库不工作'''。
  
  
  
<font color="darkcyan" size="+1">'''SD Class'''</font><br>
+
<font color="orange" size="+2">''' 示例'''</font><br>
  
'''The SD class provides functions for accessing the SD card and manipulating its files and directories.'''
 
  
:-[[ begin()]]
+
:-[[ Datalogger]]: 使用SD库将3个模拟传感器数据记录到SD卡中 / Log data from three analog sensors to a SD card using the SD library
  
:-[[ exists()]]
+
:-[[ DumpFile]]: 使用SD库从SD卡中读取一个文件并串口打印它 / Read a file from a SD card using the SD library and send it over the serial port
  
:-[[ mkdir()]]
+
:-[[ Files]]: 在SD卡上创建和销毁一个文件 / Create and destroy a file on a SD card
  
:-[[ open()]]
+
:-[[ ReadWrite]]: 对在SD卡上的文件进行读取和写入数据操作 / Read and write data to and from a file on a SD card
  
:-[[ remove()]]
+
:-[[ CardInfo]]: 获取SD卡信息 / Get information about a SD card
  
:-[[ rmdir()]]
+
|width="10%" valign="top" align="left"|
 +
<!-- 空白 -->
  
 +
|width="30%" valign="top" align="left"|
 +
<br><br><br>
  
<font color="darkcyan" size="+1">'''File class'''</font><br>
+
<font color="orange" size="+2">'''SD类'''</font><br>
  
'''The File class allows for reading from and writing to individual files on the SD card.'''
+
'''SD 类提供了访问SD卡和操作卡中文件和目录的函数。'''
  
:-[[ available()]]
+
:-[[SD.begin()| begin()]]
  
:-[[ close()]]
+
:-[[SD.exists()| exists()]]
  
:-[[ flush()]]
+
:-[[SD.mkdir()| mkdir()]]
  
:-[[ peek()]]
+
:-[[SD.open()| open()]]
  
:-[[ position()]]
+
:-[[SD.remove()| remove()]]
  
:-[[ print]]
+
:-[[SD.rmdir()| rmdir()]]
  
:-[[ println()]]
+
<br><br>
 +
<font color="orange" size="+2">'''File类'''</font><br>
  
:-[[ seek()]]
+
'''File类允许读取或写入SD卡上单个文件'''
  
:-[[ size()]]
+
:-[[File.available()| available()]]
  
:-[[ read()]]
+
:-[[File.close()| close()]]
  
:-[[ write()]]
+
:-[[File.flush()| flush()]]
  
:-[[ isDirectory]]
+
:-[[File.peek()| peek()]]
  
:-[[ openNextFile()]]
+
:-[[File.position()| position()]]
  
:-[[ rewindDirectory()]]
+
:-[[File.print()| print]]
  
 +
:-[[File.println()| println()]]
  
|width="20%" valign="top" align="left"|
+
:-[[File.seek()| seek()]]
  
<!-- 空白 -->
+
:-[[File.size()| size()]]
  
 +
:-[[File.read()| read()]]
  
 +
:-[[File.write()| write()]]
 +
 +
:-[[File.isDirectory()| isDirectory()]]
 +
 +
:-[[File.openNextFile()| openNextFile()]]
 +
 +
:-[[File.rewindDirectory()| rewindDirectory()]]
 +
 +
|width="10%" valign="top" align="left"|
 +
<!-- 空白 -->
 
|}
 
|}
  
第70行: 第87行:
  
  
[[Arduino库|返 库菜单]]
+
[[Arduino库|返 回Arduino 库菜单]]
 +
 
 +
[[首页|返回首页]]
 +
 
 +
更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛]

2015年7月23日 (四) 23:06的最后版本


SD库允许对SD卡(例如在Arduino Ethernet 扩展板)进行读取或写入操作。它是基于William Greiman的sdfatlib库编写而成。该库文件支持FAT16和FAT32文件系统在标准的SD卡和SDHC卡上。它使用8.3格式(例如:12345678.txt)的短文件名。传递到SD库函数的文件名可以包含被正斜杠“/”分隔的路径,例如:"directory/filename.txt"。因为工作目录常常就是SD卡的根目录,所以同一个文件的文件名无论是否包含正斜杠都可以(例如:"/file.txt"相当于"file.txt")。从1.0版本开始,该库支持打开多个文件。

单片机和SD卡之间使用SPI(Serial Peripheral Interface,串行外设接口)实现通信,发生在数字引脚 11、12和13(大多数Arduino电路板上)或者50、51和52(Arduino Mega上)。此外,另外一个引脚必须用来选择SD卡。这可以是硬件SS引脚 - 引脚10(大多数Arduino电路板上)或者引脚53(Arduino Mega上)-或者SD.begin()调用的另一个指定引脚。注意 即使你不使用硬件SS引脚,必须将它作为输出引脚保留下来否则SD库不工作


示例


- Datalogger: 使用SD库将3个模拟传感器数据记录到SD卡中 / Log data from three analog sensors to a SD card using the SD library
- DumpFile: 使用SD库从SD卡中读取一个文件并串口打印它 / Read a file from a SD card using the SD library and send it over the serial port
- Files: 在SD卡上创建和销毁一个文件 / Create and destroy a file on a SD card
- ReadWrite: 对在SD卡上的文件进行读取和写入数据操作 / Read and write data to and from a file on a SD card
- CardInfo: 获取SD卡信息 / Get information about a SD card




SD类

SD类提供了访问SD卡和操作卡中文件和目录的函数。

- begin()
- exists()
- mkdir()
- open()
- remove()
- rmdir()



File类

File类允许读取或写入SD卡上单个文件

- available()
- close()
- flush()
- peek()
- position()
- print
- println()
- seek()
- size()
- read()
- write()
- isDirectory()
- openNextFile()
- rewindDirectory()




返回Arduino库菜单

返回首页

更多建议和问题欢迎反馈至 YFRobot论坛