| | |
| | | public class BleWifiConfiguratorUtils { |
| | | |
| | | private static final String TAG = "BleWifiConfigurator"; |
| | | |
| | | // 默认的 UUID(设备端需要定义以下服务和特征) |
| | | //这是主服务,包含所有配网相关的特征。 |
| | | public static final UUID DEFAULT_SERVICE_UUID = UUID.fromString("0000fff0-0000-1000-8000-00805f9b34fb"); |
| | | public static final UUID DEFAULT_SERVICE_UUID = UUID.fromString("000000ff-0000-1000-8000-00805f9b34fb"); |
| | | //特征值 1: 0000fff1-0000-1000-8000-00805f9b34fb (SSID) |
| | | //用途:写入 Wi-Fi 的 SSID 名称 |
| | | //属性:Write (可写) |
| | | //数据类型:UTF-8 字符串 |
| | | //示例:"MyWiFi_5G" |
| | | public static final UUID DEFAULT_SSID_CHAR_UUID = UUID.fromString("0000fff1-0000-1000-8000-00805f9b34fb"); |
| | | //特征值 2: 0000fff2-0000-1000-8000-00805f9b34fb (密码) |
| | | // 用途:写入 Wi-Fi 密码 |
| | | //属性:Write (可写) |
| | | //数据类型:UTF-8 字符串 |
| | | //示例:"password123" |
| | | public static final UUID DEFAULT_PWD_CHAR_UUID = UUID.fromString("0000fff2-0000-1000-8000-00805f9b34fb"); |
| | | public static final UUID DEFAULT_CHAR_UUID = UUID.fromString("0000ff01-0000-1000-8000-00805f9b34fb"); |
| | | //特征值 3: 0000fff3-0000-1000-8000-00805f9b34fb (通知,可选) |
| | | //用途:接收设备端的响应消息 |
| | | //属性:Notify (通知) |
| | | //数据类型:UTF-8 字符串 |
| | | //示例响应:"SUCCESS", "FAIL: Invalid SSID" |
| | | public static final UUID DEFAULT_NOTIFY_CHAR_UUID = UUID.fromString("0000fff3-0000-1000-8000-00805f9b34fb"); // 可选,用于接收设备响应 |
| | | public static final UUID DEFAULT_NOTIFY_CHAR_UUID = UUID.fromString("0000ff01-0000-1000-8000-00805f9b34fb"); // 可选,用于接收设备响应 |
| | | |
| | | // 上下文 |
| | | private Context context; |
| | |
| | | // GATT 相关 |
| | | private BluetoothGatt bluetoothGatt; |
| | | private BluetoothGattService targetService; |
| | | private BluetoothGattCharacteristic ssidCharacteristic; |
| | | private BluetoothGattCharacteristic pwdCharacteristic; |
| | | private BluetoothGattCharacteristic characteristic; |
| | | private BluetoothGattCharacteristic notifyCharacteristic; // 可选 |
| | | |
| | | // 自定义 UUID(允许调用者修改) |
| | | private UUID serviceUuid = DEFAULT_SERVICE_UUID; |
| | | private UUID ssidCharUuid = DEFAULT_SSID_CHAR_UUID; |
| | | private UUID pwdCharUuid = DEFAULT_PWD_CHAR_UUID; |
| | | private UUID charUuid = DEFAULT_CHAR_UUID; |
| | | private UUID notifyCharUuid = DEFAULT_NOTIFY_CHAR_UUID; |
| | | |
| | | // 回调接口 |
| | |
| | | // 内部状态 |
| | | private boolean isScanning = false; |
| | | private boolean isConnected = false; |
| | | private int writeState = 0; // 0: idle, 1: writing ssid, 2: writing pwd |
| | | private String ssidToWrite; |
| | | private String pwdToWrite; |
| | | private String dataToWrite; // 待写入的数据 |
| | | |
| | | // 用于将 BLE 回调抛到主线程 |
| | | private final Handler callbackHandler = new Handler(Looper.getMainLooper()); |
| | |
| | | } |
| | | |
| | | /** |
| | | * 设置自定义 SSID 特征 UUID(可选) |
| | | * 设置自定义特征 UUID(可选) |
| | | */ |
| | | public void setSsidCharUuid(UUID ssidCharUuid) { |
| | | this.ssidCharUuid = ssidCharUuid; |
| | | } |
| | | |
| | | /** |
| | | * 设置自定义密码特征 UUID(可选) |
| | | */ |
| | | public void setPwdCharUuid(UUID pwdCharUuid) { |
| | | this.pwdCharUuid = pwdCharUuid; |
| | | public void setCharUuid(UUID charUuid) { |
| | | this.charUuid = charUuid; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public void setNotifyCharUuid(UUID notifyCharUuid) { |
| | | this.notifyCharUuid = notifyCharUuid; |
| | | } |
| | | |
| | | /** |
| | | * 检查蓝牙连接状态 |
| | | */ |
| | | public boolean getBluetoothStatus() { |
| | | return this.isConnected; |
| | | } |
| | | |
| | | // ==================== 权限检查 ==================== |
| | |
| | | public List<String> getMissingPermissions() { |
| | | List<String> missing = new ArrayList<>(); |
| | | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { |
| | | //在应用里--权限名称--附近的设备 |
| | | if (context.checkSelfPermission(android.Manifest.permission.BLUETOOTH_SCAN) != android.content.pm.PackageManager.PERMISSION_GRANTED) { |
| | | missing.add(android.Manifest.permission.BLUETOOTH_SCAN); |
| | | Log.d(TAG, "No Permissions: android.Manifest.permission.BLUETOOTH_SCAN"); |
| | |
| | | isScanning = true; |
| | | Log.d(TAG, "BLE scan started"); |
| | | } catch (Exception e) { |
| | | |
| | | Log.d(TAG, "BLE scan fail"); |
| | | } |
| | | } |
| | | |
| | |
| | | @Override |
| | | public void onScanResult(int callbackType, ScanResult result) { |
| | | BluetoothDevice device = result.getDevice(); |
| | | // // 关键:获取设备的蓝牙类型 |
| | | // int bluetoothType = device.getType(); |
| | | // switch (bluetoothType) { |
| | | // case BluetoothDevice.DEVICE_TYPE_CLASSIC: |
| | | // Log.d(TAG, "📞 经典蓝牙设备:" + device.getName()); |
| | | // // 例如:蓝牙耳机、车载音响 |
| | | // break; |
| | | // |
| | | // case BluetoothDevice.DEVICE_TYPE_LE: |
| | | // Log.d(TAG, "💡 低功耗蓝牙设备:" + device.getName()); |
| | | // // 例如:手环、智能灯、你的 HDL 设备 |
| | | // break; |
| | | // |
| | | // case BluetoothDevice.DEVICE_TYPE_DUAL: |
| | | // Log.d(TAG, "🔄 双模设备(支持两种):" + device.getName()); |
| | | // // 例如:高端蓝牙耳机 |
| | | // break; |
| | | // |
| | | // case BluetoothDevice.DEVICE_TYPE_UNKNOWN: |
| | | // Log.d(TAG, "❓ 未知类型"); |
| | | // break; |
| | | // } |
| | | |
| | | Log.d("===", "onDeviceFound: " + Objects.requireNonNull(result.getScanRecord()).getDeviceName()); |
| | | // if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { |
| | | // if (ActivityCompat.checkSelfPermission(context, Manifest.permission.BLUETOOTH_CONNECT) != PackageManager.PERMISSION_GRANTED) { |
| | |
| | | int rssi = result.getRssi(); |
| | | byte[] scanRecord = result.getScanRecord() != null ? result.getScanRecord().getBytes() : null; |
| | | if (scanListener != null) { |
| | | callbackHandler.post(() -> scanListener.onDeviceFound(device, rssi, scanRecord)); |
| | | callbackHandler.post(() -> scanListener.onDeviceFound(device, rssi, scanRecord, result)); |
| | | } |
| | | } |
| | | |
| | |
| | | callbackHandler.post(() -> this.connectListener.onConnectionFailed("No permissions")); // 没有权限 |
| | | return; |
| | | } |
| | | |
| | | if (bluetoothGatt != null) { |
| | | bluetoothGatt.disconnect(); // 先断开连接 |
| | | bluetoothGatt.close(); |
| | | bluetoothGatt = null; |
| | | } |
| | |
| | | } |
| | | isConnected = false; |
| | | targetService = null; |
| | | ssidCharacteristic = null; |
| | | pwdCharacteristic = null; |
| | | characteristic = null; |
| | | notifyCharacteristic = null; |
| | | } |
| | | |
| | |
| | | notifyConnectionFailed("Service not found"); |
| | | return; |
| | | } |
| | | ssidCharacteristic = targetService.getCharacteristic(ssidCharUuid); |
| | | pwdCharacteristic = targetService.getCharacteristic(pwdCharUuid); |
| | | characteristic = targetService.getCharacteristic(charUuid); |
| | | notifyCharacteristic = targetService.getCharacteristic(notifyCharUuid); |
| | | if (ssidCharacteristic == null || pwdCharacteristic == null) { |
| | | if (characteristic == null) { |
| | | Log.e(TAG, "Required characteristics not found"); |
| | | notifyConnectionFailed("Characteristics not found"); |
| | | return; |
| | | } |
| | | |
| | | Log.e(TAG, "Required characteristics find"); |
| | | // 如果支持通知,可以开启通知(可选) |
| | | if (notifyCharacteristic != null) { |
| | | enableNotification(notifyCharacteristic); |
| | |
| | | boolean success = status == BluetoothGatt.GATT_SUCCESS; |
| | | if (!success) { |
| | | Log.e(TAG, "Write failed, status: " + status); |
| | | writeState = 0; |
| | | if (writeListener != null) { |
| | | callbackHandler.post(() -> writeListener.onWriteFailed(status)); |
| | | } |
| | | return; |
| | | } |
| | | |
| | | if (writeState == 1 && characteristic.getUuid().equals(ssidCharUuid)) { |
| | | // SSID 写入成功,开始写密码 |
| | | writeState = 2; |
| | | if (characteristic.getUuid().equals(charUuid)) { |
| | | //写入成功 |
| | | if (writeListener != null) { |
| | | callbackHandler.post(() -> writeListener.onSsidWriteSuccess()); |
| | | } |
| | | writeCharacteristic(pwdCharacteristic, pwdToWrite); |
| | | } else if (writeState == 2 && characteristic.getUuid().equals(pwdCharUuid)) { |
| | | // 密码写入成功 |
| | | writeState = 0; |
| | | if (writeListener != null) { |
| | | callbackHandler.post(() -> writeListener.onPasswordWriteSuccess()); |
| | | callbackHandler.post(() -> writeListener.onWriteSuccess()); |
| | | callbackHandler.post(() -> writeListener.onWriteComplete(true)); |
| | | } |
| | | } |
| | |
| | | // } |
| | | // } |
| | | } |
| | | |
| | | }; |
| | | |
| | | @RequiresPermission(Manifest.permission.BLUETOOTH_CONNECT) |
| | |
| | | // 第 4 步:写入描述符到设备 |
| | | //↑ 只有写入成功后,告诉设备端,设备才会开始发送通知, |
| | | bluetoothGatt.writeDescriptor(descriptor); |
| | | Log.e(TAG, "writeDescriptor success"); |
| | | } |
| | | } |
| | | } |
| | |
| | | // ==================== 写入凭证 ==================== |
| | | |
| | | /** |
| | | * 写入 Wi-Fi SSID 和密码(必须在连接成功后调用) |
| | | * 写入数据(必须在连接成功后调用) |
| | | * |
| | | * @param ssid Wi-Fi SSID |
| | | * @param password Wi-Fi 密码 |
| | | * @param data 数据 |
| | | * @param listener 写入结果回调 |
| | | */ |
| | | @RequiresPermission(Manifest.permission.BLUETOOTH_CONNECT) |
| | | public void writeCredentials(String ssid, String password, WriteListener listener) { |
| | | public void writeCredentials(String data, WriteListener listener) { |
| | | this.writeListener = listener; |
| | | if (!isConnected || ssidCharacteristic == null || pwdCharacteristic == null) { |
| | | if (!isConnected || characteristic == null) { |
| | | if (listener != null) { |
| | | callbackHandler.post(() -> listener.onWriteFailed(-1)); // 自定义错误码 |
| | | } |
| | | return; |
| | | } |
| | | this.ssidToWrite = ssid; |
| | | this.pwdToWrite = password; |
| | | |
| | | // 开始写 SSID |
| | | writeState = 1; |
| | | writeCharacteristic(ssidCharacteristic, ssid); |
| | | // 开始写 |
| | | writeCharacteristic(characteristic, data); |
| | | } |
| | | |
| | | @RequiresPermission(Manifest.permission.BLUETOOTH_CONNECT) |
| | |
| | | /** |
| | | * 检查蓝牙是否开启 |
| | | */ |
| | | private boolean checkBluetoothEnabled() { |
| | | public boolean checkBluetoothEnabled() { |
| | | return bluetoothAdapter != null && bluetoothAdapter.isEnabled(); |
| | | } |
| | | |
| | |
| | | /** |
| | | * 发现设备(可能多次回调) |
| | | */ |
| | | void onDeviceFound(BluetoothDevice device, int rssi, byte[] scanRecord); |
| | | void onDeviceFound(BluetoothDevice device, int rssi, byte[] scanRecord, ScanResult scanResult); |
| | | |
| | | /** |
| | | * 扫描失败 |
| | |
| | | |
| | | public interface WriteListener { |
| | | /** |
| | | * SSID 写入成功 |
| | | * 写入成功 |
| | | */ |
| | | void onSsidWriteSuccess(); |
| | | |
| | | /** |
| | | * 密码写入成功 |
| | | */ |
| | | void onPasswordWriteSuccess(); |
| | | void onWriteSuccess(); |
| | | |
| | | /** |
| | | * 全部写入完成(成功为 true) |