gpt4 book ai didi

android - 如何通过Android 4.3 将文本数据发送到CC2541 keyfob?

转载 作者:搜寻专家 更新时间:2023-11-01 08:55:00 26 4
gpt4 key购买 nike

我正在开发一个应用程序,我必须在 Android 4.3 上连接到蓝牙设备。

我想通过 Android 应用程序更改 CC2541 Keyfob 的名称。

我的想法是:

1.有一个纯文本,我可以在我的 Android 应用程序中键入我想要的名称。

2.输入姓名后,我按下按钮发送此文本。

3.如果 CC2541 从 Android 应用程序接收到此文本,它将更改 keyfobdemo.c 中以下代码的 deviceName[] 中的文本:

static uint8 deviceName[] =
{
// complete name
0x0b, // length of first data structure (11 bytes excluding length byte)
0x09, // AD Type = Complete local name
0x4b, // 'K'
0x65, // 'e'
0x79, // 'y'
0x66, // 'f'
0x6f, // 'o'
0x62, // 'b'
0x64, // 'd'
0x65, // 'e'
0x6d, // 'm'
0x6f, // 'o'
};

问题如下:

1.如何在Android application 4.3中将文本数据发送到CC2541 keyfob ??

2.CC2541端如何接收文本数据??

3.我需要使用任何配置文件吗??

抱歉我的英语不好,还有这些问题。

感谢您的指导。


编辑

我尝试使用 0x2A00 来获取设备名称服务,但是当我调用 Device_Name 函数时它似乎不起作用。

Name_Service 为空。

private static final UUID Device_Name_UUID = UUID.fromString("00002a00-0000-1000-8000-00805f9b34fb");
private static final UUID Write_UUID = UUID.fromString("00001800-0000-1000-8000-00805f9b34fb");





public void Device_Name(){
BluetoothGattService Name_Service = mBluetoothGatt.getService(Write_UUID );
if(Name_Service == null) {
Log.d(TAG, "Name_Service service not found!");
return;
}

BluetoothGattCharacteristic DeviceName = Name_Service.getCharacteristic(Device_Name_UUID);
if(DeviceName == null) {
Log.d(TAG, "DeviceName charateristic not found!");
return;
}



}


Log.v(TAG, "readCharacteristic(DeviceName) = " + mBluetoothGatt.readCharacteristic(DeviceName));

String i = "123";
DeviceName.setValue(i);
Log.v(TAG, "writeCharacteristic(DeviceName) = " + mBluetoothGatt.writeCharacteristic(DeviceName));

它显示以下日志:

V/BluetoothLeService( 3680): readCharacteristic(DeviceName) = true
V/BluetoothLeService( 3680): writeCharacteristic(DeviceName) = false
D/audio_hw_primary( 1752): found out /dev/snd/pcmC0D0p
W/audio_hw_primary( 1752): out_write() limiting sleep time 45351 to 23219
W/audio_hw_primary( 1752): out_write() limiting sleep time 34263 to 23219
W/audio_hw_primary( 1752): out_write() limiting sleep time 33696 to 23219
D/BtGatt.btif( 2646): btif_gattc_upstreams_evt: Event 3
I/BtGatt.btif( 2646): set_read_value unformat.len = 13
D/BtGatt.GattService( 2646): onReadCharacteristic() - address=90:59:AF:0B:8A:AB, status=0, length=13
D/BluetoothGatt( 3680): onCharacteristicRead() - Device=90:59:AF:0B:8A:AB UUID=00002a00-0000-1000-8000-00805f9b34fb Status=0

读取成功,可以获取设备名称

我引用了 Bluetooth Page-Device Name ,格式为 UTF-8 字符串。但它 writeCharacteristic false。

最佳答案

我不知道 Android BLE API,但我可以告诉您它应该如何与低功耗蓝牙配合使用。

设备名称存储在 GATT 服务器(cc2541 设备上的本地数据库)中。如果您连接到 BLE 设备,您应该能够进行发现以找出数据库的结构并找到设备名称的 ATT 句柄。

GATT 服务器由具有 UUID(松散定义属性类型)、属性句柄(在该 GATT 服务器实例中使用的标识符)和值的属性组成。根据 [1],设备名称的 UUID 是 0x2A00。所以你可以按类型搜索,找到这个UUID的句柄。

获得 UUID 后,只需使用 Android API 中的 GATT 客户端向具有新值的句柄发送写入请求即可

编辑:查看 API,我认为您应该使用 getService(0x18, 0x00) [2] 获取主要服务(应包含设备名称),然后 writeCharacteristic[3] 更新名称。

从 [4] 来看,代码看起来应该是这样的(未测试):

public void writeCharacteristic(byte[] value) {
BluetoothGattService gap_service = mBluetoothGatt.getService(
UUID.fromString("00001800-0000-1000-8000-00805F9B34FB"));
if (gap_service == null) {
System.out.println("gap_service null";);
return;
}
BluetoothGattCharacteristic dev_name = gap_service.getCharacteristic(
UUID.fromString("00002A00-0000-1000-8000-00805F9B34FB"));
if (dev_name == null) {
System.out.println("dev_name null";);
return;
}
dev_name.setValue(value);
boolean status = mBluetoothGatt.writeCharacteristic(dev_name);
System.out.println("Write Status: " + status);
}

关于android - 如何通过Android 4.3 将文本数据发送到CC2541 keyfob?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19763777/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com