“SD.begin()”的版本间的差异

来自YFRobotwiki
跳转至: 导航搜索
 
(未显示1个用户的1个中间版本)
第9行: 第9行:
 
<font color="orange" size="+1">'''描述'''</font>
 
<font color="orange" size="+1">'''描述'''</font>
  
Initializes the SD library and card. This begins use of the SPI bus (digital pins 11, 12, and 13 on most Arduino boards; 50, 51, and 52 on the Mega) and the chip select pin, which defaults to the hardware SS pin (pin 10 on most Arduino boards, 53 on the Mega). Note that even if you use a different chip select pin, '''the hardware SS pin must be kept as an output''' or the SD library functions will not work.
+
初始化SD库及SD卡。它使用了SPI总线(多数arduino板为数字引脚11、12和13;Mega板上为引脚50、51和52)和片选引脚,一般默认的硬件SS引脚(多数arduino板为引脚10,Mega上为53引脚)。注意,即使你使用其他片选引脚,''' 硬件SS引脚也必须保持为一个输出引脚''' 否则SD库函数将不工作。
  
  
第15行: 第15行:
  
 
SD.begin()
 
SD.begin()
 +
 
SD.begin(cspin)  
 
SD.begin(cspin)  
  
第20行: 第21行:
 
<font color="orange" size="+1">'''参数'''</font>
 
<font color="orange" size="+1">'''参数'''</font>
  
cspin (optional): the pin connected to the chip select line of the SD card; defaults to the hardware SS line of the SPI bus
+
cspin (可选):连接到SD卡片选线的arduino引脚号;默认SPI总线下的硬件SS(Slave Select/从机选择)线
  
  
 
<font color="orange" size="+1">'''返回值'''</font>
 
<font color="orange" size="+1">'''返回值'''</font>
  
true on success; false on failure
+
成功返回true,失败返回false
  
 
|}
 
|}

2015年7月28日 (二) 22:23的最后版本

SD

begin()


描述

初始化SD库及SD卡。它使用了SPI总线(多数arduino板为数字引脚11、12和13;Mega板上为引脚50、51和52)和片选引脚,一般默认的硬件SS引脚(多数arduino板为引脚10,Mega上为53引脚)。注意,即使你使用其他片选引脚,硬件SS引脚也必须保持为一个输出引脚否则SD库函数将不工作。


语法

SD.begin()

SD.begin(cspin)


参数

cspin(可选):连接到SD卡片选线的arduino引脚号;默认SPI总线下的硬件SS(Slave Select/从机选择)线


返回值

成功返回true,失败返回false


返回SD库

返回Arduino库菜单

返回首页

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