查看“Microduino-【BT】”的源代码
←
Microduino-【BT】
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{{Language|Microduino-【BT】}} {| style="width: 800px;" |- | [[File:Microduino-bt-rect.jpg|400px|thumb|right|Microduino-Shield BT4.0]] Microduino-Shield BT 4.0 module is a plug-in device that supports Bluetooth 4.0 low energy standard. Microduino-Shield BT 4.0 module is a bluetooth serial port transparent transmission module, using the 27 PIN standard Microduino interface, supporting the Arduino board and derivatives, such as Microduino core. The module is designed by player ogre_c. ==Features== *Microduino-Shield BT4.0 adopts U type 27 PIN interface of Microduino, combining with other Microduino modult to use; *Microduino-Shield BT4.0 chooses the HM-10 BLE as the bluetooth core module; *TI CC2540 chip with 256Kb space; *Support AT instruction, capable of updating baud rate, device name,paring code and other related parameters as needed, flexible to use; *Small, cheap, stackable; *Open source hardware circuit design, compatible with the Arduino IDE development environment for programming; *With uniformed Microduino interface standard and rich peripheral modules, it is flexible and convenient to have a quick connection and extension with other corresponding Microduino modules and sensors; *2.54 pitch row female connector for easy integration into breadboard. ==Specifications== *Communication form: serial transmission; *Power supply:+3.3VDC 50mA; *Bluetooth protocol:Bluetooth Specification V4.0 BLE; *Service support:Central & Peripheral UUID FFE0,FFE1; *Frequency:2.4GHz ISM band; *Modulation mode:GFSK(Gaussian Frequency Shift Keying); *Power of transmission:≤4dBm; *Sensitivity:≤-84dBm at 0.1% BER; *Transmission rate: **Asynchronous: 6 kbps; **Synchronous: 6 kbps; *State indicator: **Two states: ***Flashing means that the module has been powered but not matched well. ***Always lighting means that the module has been matched well and has started communication. **By the indicator, it is very easy to the status of the module, which is conveniently. ==Documents== Eagle PCB '''[[File:Microduino-BT Shield.zip]]''' ===Main component=== **HM-10 Bluetooth module documentation:'''[[File:Bluetooth40 cn.pdf]]''','''[[File:Bluetooth40 en.pdf]]''' **cc2540_datasheet:'''[[File:Cc2540 datasheet.pdf]]''' ==Development== ===Seril configuration=== *Default serial configuration: **Baud rate: 9600 **No check **Data bits: 8 **Stop bit: 1 *Serial port on Arduino IDE's serial monitor: **Set to:"No line terminator"、"9600baud" *For other serial debug software: **Baud rate: 9600 **No check **Data bits: 8 **Stop bit: 1 *We suggest using Microduino Core 32u4 to debug this BT module: **32u4 module can use the USB to simulate the serial 0, and BT uses the 32u4's serial 1 (RX0,TX1), so you don't need change the existing jumper (RX0,TX1) and it won't impact the program downloading and serial's function. *Microduino Shield BT4.0 uses the default serial RX0,TX1 to communicate with Core module, so can connect with Microduino FT232 directly. ===Use PC to debug=== *Use serial directly: **No need superimpose the FT232 directly, cross connect the FT232 and Shield BT4.0's RX0,TX1. ===Use FT232R、Core download and debug=== *Use default jumper (RX0、TX1): **Unplug the Microduino Shield BT4.0 during download program; *If you want to change the jumper cables to meet your requirement:cut the connection between two intermediate of the pad and RX0/TX1, and then connect them to D2, D3(or D9、D10). **If changed the jumper, need the change the serial connection between Microduino Shield BT4.0 and Core module, change the connection "TX-RX0、RX-TX1" to following: ***TX-D2、RX-D3 (For Core+'s Serial1) ***TX-D9、RX-D10 (all SoftwareSeria libray to resolve) ===Pin description=== :[[file:Microduino-BT-1.jpg|800px|thumb|center|Microduino-BT]] <br style="clear: left"/> :[[file:Microduino-BT-2.jpg|800px|thumb|center|Microduino-BT]] <br style="clear: left"/> {|class="wikitable" ! rowspan="1" | HM-10 Pin || Microduino Pin || Function |- | TX|| RX0(orD2/D9) || serial send pin (TTL),connect Core's RXD |- | RX || TX1(orD3/D10) || serial receive pin (TTL),connect Core's TXD |} *Support AT command to configure and control:'''[[File:Bluetooth40 cn.pdf]]''','''[[File:Bluetooth40 en.pdf]]''' ==Application== ===Download progrm=== Test program:'''[[File:BLE debug uart1.zip]]''','''[[File:BLE LightBlue time.zip]]''' ===Shield BT4.0 pass-through data to IOS devices=== *Prepared hardware:Microduino FT232R, Microduino Core, Microduino Shield BT4.0, supported Bluetooth 4.0 devices (iPhone4s upper,iPod touch 5 upper,iPad 3 upper,iPad mini upper); *Prepared software: Arduino IDE (1.0 release and upper), Microduino test program (Arduino part), download LightBlue from App Store; *Start Arduino IED,open the Microduino test program, board type select "Microduino Core (Atmega328P@16M,5V)", download directly; *Start to set the IOS device: **start the bluetooth function on IOS device; **Open LightBlue; **In "Central" tab find the "HMSoft", then set "Service"-"Characteristics"; **Then you can see the debugging window, click the "Start Notify". *ASCII data can be seen displayed: "BLE, Time: xxx" after connection success, where xxx is the Core and Shield BT4.0's running time in seconds. ===Use Core 32u4 to debug Shield BT4.0=== *Prepared hardware:Microduino FT232R,Microduino Core 32u4 and Microduino Shield BT4.0; *Prepared software:Arduino IDE(1.0 releae and upper), Microduino test program(Arduino part); **(32u4 can use USB to simulate the serial 0, but BT use 32u4's serial1 (RX0,TX1), so you can use the existing jumper(RX0,TX1)); *Start Arduino IED, open the Microduino test program, board type select "Microduino Core 32u4", download directly; *Check if the serial communication works: **Open the serial monitor, then send "AT" (No \r\n after AT), if return "OK", that means configure success. ===Use Core+'s uart1 to debug Shield BT4.0=== *Prepared hardware:Microduino FT232R, Microduino Core+, Microduino Shield BT4.0; *Prepared software:Arduino IDE (1.0 release and upper), Microduino test program (Arduino part); *Other configuration:Suppose the player has changed the jumper which change the serial to D2、D3; *Start Arduino IED, open Microduino test program, select the board type "Microduino Core (Atmega328P@16M,5V)", download directly; *Check the serial communication: **Open the serial monitor,send uppercase “AT”(no \r\n appened), if return “OK”,that means matched. ===Note:If use the Android device to debug, in order to defect the BT module 4.3 release or upper is needed.=== ===Microduino-Shield BT4.0 simple testing=== *[http://viewc.com/p/296 Microduino-Shield BT4.0 simple testing] from @颜火山 ==Bug== ==History== *On June 5, 2013, the second time proofing is completed, changed its name to the "Microduino - (BT)" and added the third optional serial port - UART1, divided into 2 version, version 2.1, a module used for HM09;A 4.0 version, module used for HM10. *On May 10, 2013, the board is completed. |- | ==Pictures== [[file:Microduino-【BT】-t.jpg|thumb|600px|center|Microduino BT 4.0 Front]] [[file:Microduino-【BT】-b.jpg|thumb|600px|center|Microduino BT 4.0 Back]] ==Video== |}
该页面使用的模板:
模板:Language
(
查看源代码
)
模板:Nmbox
(
查看源代码
)
返回至
Microduino-【BT】
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息