【Android BLE】蓝牙开发「防丢器」的相关知识点(三):手机与设备之间指令传输

1.手机发送指令到BLE设备

手机向蓝牙设备发送指令,调用的是BluetoothGatt.writeCharacteristic(BluetoothGattCharacteristic characteristic)方法,本项目中由于涉及多设备管理,故由一个统一的工具类来发送指令。
  在Activity中发送指令:

public static final UUID UUID_S_EXTRA = UUID.fromString("0000ff00-0000-1000-8000-00805f9b34fb");//扩展服务
public static final UUID UUID_S_EXTRA_C = UUID.fromString("0000fff0-0000-1000-8000-00805f9b34fb");//设备设置
public static final byte[] VALUE_FIND_LIGHT_ON = {(byte) 0x03, (byte) 0x01, (byte) 0x30}; // 指示灯打开
public static final byte[] VALUE_FIND_LIGHT_OFF = {(byte) 0x03, (byte) 0x00, (byte) 0x30}; // 指示灯关闭

byte[] value = BluetoothUtils.VALUE_FIND_LIGHT_ON;
buttonView.setChecked(!isChecked);
BluetoothUtils.sendValueToBle(mMac, BluetoothUtils.UUID_S_EXTRA, BluetoothUtils.UUID_S_EXTRA_C, value);

** 发送指令时,首先根据mac找出该设备对应的BluetoothGatt,然后发送对应的参数。*

2.判断指令发送是否成功

对于手机已经发送出去的指令,如何判断设备是否接收到并生效比较关键,这与很多业务相关联。这一点,在上篇文章中也提到,我们使用BluetoothGattCallback onCharacteristicWrite来解决,设备收到指令后,会进入该回调参数,我们可以获取被写入指令设备的MAC,写入的值,写入的状态,写入的通道等信息,据此来判断是否成功。

3.手机获取BLE设备的指令

手机与设备建立连接后,可订阅设备相应的通道(如电量、按键指令等),订阅后,方可接收到设备发送的指令信息,该信息从BluetoothGattCallback onCharacteristicRead获取,获取数据后的处理,可参与上篇文章。

4附录:指令发送相关的工具类BluetoothUtils.java

package com.powerstick.beaglepro.util;

import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothGatt;
import android.bluetooth.BluetoothGattCharacteristic;
import android.bluetooth.BluetoothGattService;
import android.bluetooth.BluetoothManager;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;

import com.afap.utils.ByteUtils;
import com.powerstick.beaglepro.MyApplication;
import com.powerstick.beaglepro.services.BluetoothLeService;
import com.tencent.bugly.crashreport.BuglyLog;

import java.util.UUID;


public final class BluetoothUtils {
    public static final UUID UUID_S_IMMEDIATE = UUID.fromString("00001802-0000-1000-8000-00805f9b34fb");//立即报警
    public static final UUID UUID_S_IMMEDIATE_C_ALERT = UUID.fromString("00002a06-0000-1000-8000-00805f9b34fb");//报警级别
    public static final UUID UUID_S_BATTERY = UUID.fromString("0000180f-0000-1000-8000-00805f9b34fb");//电池
    public static final UUID UUID_S_BATTERY_C_LEVEL = UUID.fromString("00002a19-0000-1000-8000-00805f9b34fb");//电池level

    public static final UUID UUID_S_DEVICEINFO = UUID.fromString("0000180a-0000-1000-8000-00805f9b34fb");//设备信息
    public static final UUID UUID_S_DEVICEINFO_C_FIRMWARE = UUID.fromString("00002a28-0000-1000-8000-00805f9b34fb");//固件


    public static final UUID UUID_S_KEY = UUID.fromString("0000ffe0-0000-1000-8000-00805f9b34fb");//按键信息
    public static final UUID UUID_S_KEY_C_PRESS = UUID.fromString("0000ffe1-0000-1000-8000-00805f9b34fb");//按键


    public static final UUID UUID_S_EXTRA = UUID.fromString("0000ff00-0000-1000-8000-00805f9b34fb");//扩展服务
    public static final UUID UUID_S_EXTRA_C = UUID.fromString("0000fff0-0000-1000-8000-00805f9b34fb");//设备设置
    public static final UUID UUID_S_EXTRA_C_LOGIN = UUID.fromString("0000ffc0-0000-1000-8000-00805f9b34fb");//认证
    public static final UUID UUID_S_EXTRA_C_UNBIND = UUID.fromString("0000ffc1-0000-1000-8000-00805f9b34fb");//解绑
    public static final UUID UUID_S_EXTRA_C_RENAME = UUID.fromString("0000fff3-0000-1000-8000-00805f9b34fb");//重命名

    public static final byte[] VALUE_MODE_THETHER = {(byte) 0x01, (byte) 0x00, (byte) 0x10};
    public static final byte[] VALUE_MODE_FIND = {(byte) 0x01, (byte) 0x01, (byte) 0x10};

    public static final byte[] VALUE_IMMEDIATE_ON = {(byte) 2}; // 立即报警
    public static final byte[] VALUE_IMMEDIATE_OFF = {(byte) 0}; // 取消立即报警

    public static final byte[] VALUE_TETHER_BEEP_ON = {(byte) 0x02, (byte) 0x01, (byte) 0x20}; //警报打开
    public static final byte[] VALUE_TETHER_BEEP_OFF = {(byte) 0x02, (byte) 0x00, (byte) 0x20}; //警报关闭

    public static final byte[] VALUE_FIND_LIGHT_ON = {(byte) 0x03, (byte) 0x01, (byte) 0x30}; //指示灯打开
    public static final byte[] VALUE_FIND_LIGHT_OFF = {(byte) 0x03, (byte) 0x00, (byte) 0x30}; //指示灯关闭


    public static final byte[] VALUE_UNBIND = {(byte) 0x09, (byte) 0x01, (byte) 0x90};// 解绑指令


    public final static int REQUEST_ENABLE_BT = 2001;
    private final Context mActivity;
    private final BluetoothAdapter mBluetoothAdapter;

    public BluetoothUtils(final Context activity) {
        mActivity = activity;
        final BluetoothManager btManager = (BluetoothManager) mActivity.getSystemService(Context.BLUETOOTH_SERVICE);
        mBluetoothAdapter = btManager.getAdapter();
    }

    public void askUserToEnableBluetoothIfNeeded() {
        if (isBluetoothLeSupported() && (mBluetoothAdapter == null || !mBluetoothAdapter.isEnabled())) {
            final Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
            ((Activity) mActivity).startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
        }
    }

    public BluetoothAdapter getBluetoothAdapter() {
        return mBluetoothAdapter;
    }

    public boolean isBluetoothLeSupported() {
        return mActivity.getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE);
    }

    public boolean isBluetoothOn() {
        if (mBluetoothAdapter == null) {
            return false;
        } else {
            return mBluetoothAdapter.isEnabled();
        }
    }


    public static BluetoothLeService getBleService() {
        return MyApplication.getInstance().mBluetoothLeService;
    }


    public static boolean sendValueToBle(String mac, UUID serviceId, UUID characteristicId, byte[] value) {
        if (getBleService() == null) {
            BuglyLog.e("BluetoothUtils", "蓝牙服务为null");
            return false;
        }
        boolean result = false;
        BluetoothGattService mService = getBleService().getService(mac, serviceId);
        if (mService != null) {
            BluetoothGattCharacteristic mCharacteristic = mService.getCharacteristic(characteristicId);
            if (mCharacteristic != null) {
                mCharacteristic.setValue(value);
                BuglyLog.w("BluetoothUtils", ByteUtils.byteArrayToHexString(value));
                result = getBleService().writeCharacteristic(mac, mCharacteristic);
            } else {
                BuglyLog.w("BluetoothUtils", "目标通道为NULL");
            }
        }
        return result;
    }


    public static void readCharacteristic(String mac, UUID serviceId, UUID characteristicId) {
        if (getBleService() == null) {
            return;
        }
        BluetoothGattService mService = getBleService().getService(mac, serviceId);
        if (mService != null) {
            BluetoothGattCharacteristic mCharacteristic = mService.getCharacteristic(characteristicId);
            if (mCharacteristic != null) {
                BuglyLog.w("BluetoothUtils", "读取:" + characteristicId.toString());
                getBleService().readCharacteristic(mac, mCharacteristic);
            } else {
                BuglyLog.w("BluetoothUtils", "目标通道为NULL");
            }
        }
    }

    public static void readRemoteRssi(String mac) {
        if (getBleService() == null) {
            return;
        }
        BluetoothGatt gatt = getBleService().getGatt(mac);
        if (gatt != null) {
            gatt.readRemoteRssi();
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,686评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,668评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,160评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,736评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,847评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,043评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,129评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,872评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,318评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,645评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,777评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,861评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,589评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,687评论 2 351

推荐阅读更多精彩内容