蓝牙传通讯录怎么操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝牙传通讯录怎么操作相关的知识,希望对你有一定的参考价值。

参考技术A 蓝牙传通讯录操作方法:

1、将两部手机打开蓝牙并进行配对。

2、配对成功后,打开设备A“联系人”,找到需要传输的联系人。

3、进入后点击“分享”,确认信息后点击“确定”。

4、选择“蓝牙”选项,选择配对设备。

5、用设备B点击“接受”即可。

蓝牙技术是一种无线数据和语音通信开放的全球规范,它是基于低成本的近距离无线连接,为固定和移动设备建立通信环境的一种特殊的近距离无线技术连接。

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());
本回答被提问者采纳

以上是关于蓝牙传通讯录怎么操作的主要内容,如果未能解决你的问题,请参考以下文章

怎么通过蓝牙实现安卓手机与全站仪的通讯?

苹果手机和安卓手机怎么传照片

安卓通讯开发——蓝牙的开启,搜索与传输

百度地图收藏点如何传给朋友共享使用

Android通过JNI实现与C语言的串口通讯操作蓝牙硬件模块

Arduino上输入数字,蓝牙里为啥返回的是字母?