目前分類:Arduino (8)

瀏覽方式: 標題列表 簡短摘要

請參考

http://blog.ddt.idv.tw/2015/01/arduino-ide-tab.html

的內容



foxfox 發表在 痞客邦 留言(0) 人氣()

請參考

http://selfbuilt.net/shop/gy-80-inertial-management-unit

下方的各模組連結



foxfox 發表在 痞客邦 留言(0) 人氣()

用惯Arduino串口传输的朋友都知道,Arduino的Serial.read()每次只能读一个字节,但是有时想进行字符串通讯,就很麻烦了。
废话少讲,直接上完整例子:

编译只要一块Arduino,不需要任何外置元件。
用Arduino编译器的串口监视器即可看到结果,我们打什么文字进去,下面就会返回什么文字。

String comdata = "";

foxfox 發表在 痞客邦 留言(0) 人氣()

Q:
Arduino如果是接在獨立電源的情況下
因為板子上的USB孔、LED燈的耗電狀況
會使的續航力不足

S:
讓板子進入"睡眠模式",每隔一段時間才開啟,並抓取資料。

foxfox 發表在 痞客邦 留言(0) 人氣()

參考文章 :

http://yehnan.blogspot.tw/2013/08/arduino.html



foxfox 發表在 痞客邦 留言(0) 人氣()

參考文章 :

http://www.hobbyist.co.nz/?q=bluetooth-module-configurations


Baud rate、Name、PIN碼設定教學
http://coopermaa2nd.blogspot.tw/2012/06/bluetooth-module-configuration.html

foxfox 發表在 痞客邦 留言(0) 人氣()

參考文章

http://blog.xuite.net/chycahock/EDA/225365055-Android%E8%8
8%87Arduino%E7%9A%84%E8%97%8D%E8%8A%BD%E9%80%9A%E8%A8%8A


foxfox 發表在 痞客邦 留言(0) 人氣()

 

Arduino的Function主要分為7大類

  • Digital I/O
  • Analog I/O
  • Time
  • MAth
  • Bits / Bytes
  • Interrupts
  • Serial Communication

加上額外的Libraries

 

Digital I/O

  • pinMode(pin,mode)

用於初始化要指定的pin的狀態。

mode參數必須是OUTPUT或是INPUT,必須放置於void setup()裡面。

foxfox 發表在 痞客邦 留言(0) 人氣()