arduino蓝牙模块间怎么通讯
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arduino蓝牙模块间怎么通讯相关的知识,希望对你有一定的参考价值。
参考技术A hc 05key引脚置高电位进入命令模式给例程:/*
AUTHOR: Hazim Bitar (techbitar)
DATE: Aug 29, 2013
LICENSE: Public domain (use at your own risk)
CONTACT: techbitar at gmail dot com (techbitar.com)
*/
#include
SoftwareSerial BTSerial(10, 11); // RX | TX
void setup()
pinMode(9, OUTPUT); // this pin will pull the HC-05 pin 34 (key pin) HIGH to switch module to AT mode
digitalWrite(9, HIGH);
Serial.begin(9600);
Serial.println("Enter AT commands:");
BTSerial.begin(38400); // HC-05 default speed in AT command more
void loop()
// Keep reading from HC-05 and send to Arduino Serial Monitor
if (BTSerial.available())
Serial.write(BTSerial.read());
// Keep reading from Arduino Serial Monitor and send to HC-05
if (Serial.available())
BTSerial.write(Serial.read());
本回答被提问者采纳
unity在安卓手机上使用蓝牙连接arduino蓝牙模块
unity在安卓手机上使用蓝牙连接arduino蓝牙模块想通过unity导出安卓项目 用手机蓝牙控制arduino蓝牙模块
参考技术A 我没用过unity,到在安卓手机通过蓝牙和arduino通信很简单,arduino上安装蓝牙模块,我用的是HC-06,你也可以试试其他的,然后手机端安一个蓝牙串口APP,比如SPP,直接可以用SPP编辑按钮和字符发送给arduino,简单方便以上是关于arduino蓝牙模块间怎么通讯的主要内容,如果未能解决你的问题,请参考以下文章
如何借助蓝牙模块使用 Android 手机控制 Arduino