“(SKU:RB-03T033)XBee 1mW通信模块(无天线)”的版本间的差异
来自ALSROBOT WiKi
(→应用例程) |
|||
第12行: | 第12行: | ||
==应用例程== | ==应用例程== | ||
− | + | ===示例代码=== | |
− | + | <pre style='color:blue'>void setup() { | |
+ | Serial.begin(9600); //initialize serial | ||
+ | pinMode(13, OUTPUT); //set pin 13 as output | ||
+ | } | ||
− | + | void loop() { | |
− | + | while(Serial.available()){ //is there anything to read? | |
− | + | char getData = Serial.read(); //if yes, read it | |
− | + | ||
+ | if(getData == 'a'){ | ||
+ | digitalWrite(13, HIGH); | ||
+ | }else if(getData == 'b'){ | ||
+ | digitalWrite(13, LOW); | ||
+ | } | ||
+ | } | ||
+ | }</pre> | ||
+ | ===程序效果=== | ||
+ | 监控串口是否有数据可用,“a”打开引脚13上的LED“b”将其关闭。 | ||
==产品相关推荐== | ==产品相关推荐== | ||
购买地址:[http://www.alsrobot.cn/goods-492.html XBee 1mW ZigBee 无线数传模块] | 购买地址:[http://www.alsrobot.cn/goods-492.html XBee 1mW ZigBee 无线数传模块] |
2015年6月12日 (五) 15:16的版本
目录 |
产品概述
此款XBee 1mW Trace Antenna ZigBee 无线数传模块为美国Sparkfun Electronic原装进口产品。是采用ZigBee技术的通信模块,通过串口与单片机等设备间进行通信,能够快速地将设备接入到ZigBee网络。其传输距离最大为100米(室外空旷距离)是低功耗的最佳选择。这款模块提供了非常可靠的数据传输,任何有串口输出的设备都能用该模块进行数据传输,支持点-点和多点的网络传输。
规格参数
- 3.3V @50mA
- 最大数据传输速率250kbps
- 工作范围100米
- 通过FCC(Federal Commanications Commission)认证
- IEEE 802.15.4网络协议
- 128位加密
应用例程
示例代码
void setup() { Serial.begin(9600); //initialize serial pinMode(13, OUTPUT); //set pin 13 as output } void loop() { while(Serial.available()){ //is there anything to read? char getData = Serial.read(); //if yes, read it if(getData == 'a'){ digitalWrite(13, HIGH); }else if(getData == 'b'){ digitalWrite(13, LOW); } } }
程序效果
监控串口是否有数据可用,“a”打开引脚13上的LED“b”将其关闭。