初始版本

This commit is contained in:
2025-07-11 21:19:23 +08:00
parent 4ce2f90e91
commit fc0f5b9cad
917 changed files with 42712 additions and 161 deletions

View File

@ -0,0 +1,30 @@
package com.qidian.baseble.ble;
import com.qidian.baseble.model.BluetoothLeDevice;
import com.vise.xsnow.event.IEvent;
public class ScanDataEvent implements IEvent {
private byte[] data;
private BluetoothLeDevice bluetoothLeDevice;
public ScanDataEvent() {
}
public byte[] getData() {
return data;
}
public ScanDataEvent setData(byte[] data) {
this.data = data;
return this;
}
public BluetoothLeDevice getBluetoothLeDevice() {
return bluetoothLeDevice;
}
public ScanDataEvent setBluetoothLeDevice(BluetoothLeDevice bluetoothLeDevice) {
this.bluetoothLeDevice = bluetoothLeDevice;
return this;
}
}