分类:
arduino SD卡读写 详解

arduino SD卡读写 详解

栏目分类:Arduino 浏览次数:628 发布时间:2017-10-14

需要说明的是arduino的SD库文件,目前对2G以上的卡支持不是很好,所以推荐大家使用2G包含2G以下的,文件格式使用FAT格式。 接线方式 ** MOSI - pin 11 ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4...

TAG:
【转】arduino的基础知识 语法 常用 函数

【转】arduino的基础知识 语法 常用 函数

栏目分类:Arduino 浏览次数:509 发布时间:2015-03-20

Arduino是一款价格不高、易于使用的电子平台。包括硬件和软件在内的整个平台是完全开源的,并且使用的是松散地基于C/C++的语言。Arduino是为希望尝试创建交互式物理对象的实践者、喜...

TAG:
arduino 使用1602显示器换行操作

arduino 使用1602显示器换行操作

栏目分类:Arduino 浏览次数:1013 发布时间:2015-03-20

最好使用4引脚的1602显示器 节省arduino引脚使用! void setup() { // 設定 LCD 的行列數目 (2 x 16) lcd.begin(16, 2); // 列印 Hello World 訊息到 LCD 上 lcd.print( hello, world! ); } void loop() { // 將游標設到...

TAG:
arduino 下载程序报错 not in sync: resp=0x00

arduino 下载程序报错 not in sync: resp=0x00

栏目分类:Arduino 浏览次数:625 发布时间:2015-03-11

avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xe0 如果是报错以上文字 最好先把插在arduino上面的tx或rx先移除掉 然后重新下载程序...

TAG:
arduino 串口接收字符串

arduino 串口接收字符串

栏目分类:Arduino 浏览次数:234 发布时间:2015-03-11

String comdata = ; void setup() { Serial.begin(9600); } void loop() { while (Serial.available() 0) { comdata += char(Serial.read()); delay(2); } if (comdata.length() 0) { Serial.println(comdata); comdata = ; } } comdata是一个字符串类型...

TAG:
Arduino芯片引脚示意图

Arduino芯片引脚示意图

栏目分类:Arduino 浏览次数:469 发布时间:2015-03-09

Arduino-Pinout_web.png (192.26 KB, 下载次数: 1822) 下载附件 2013-2-13 11:52 上传 Arduino-Pinoutv2_2.png (273.5 KB, 下载次数: 1614) 下载附件 2013-2-13 11:53 上传 Arduino_uno_Pinout_Web.png (385.74 KB, 下载次数: 1998) 下...

TAG:
[转]GPS数据包解析

[转]GPS数据包解析

栏目分类:Arduino 浏览次数:273 发布时间:2015-03-08

GPS数据包解析 GPS 上电后,每隔一定的时间就会返回一定格式的数据,数据格式为: $信息类型,x,x,x,x,x,x,x,x,x,x,x,x,x每行开头的字符都是$,接着是信息类型,后面是数...

TAG: