Improve readme

Update changelog
This commit is contained in:
Foti Dim
2025-02-12 10:18:57 +01:00
parent 8e9ddc839d
commit 6443915fc3
2 changed files with 6 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
## 0.16.0
* Bump bluez to 0.8.3
* Improve readme
## 0.15.0
* `getSystemDevices(withServices:)` now sets several generic services by default as filter
* `getConnectionState` on Android will now return `BleConnectionState.disconnected` if device is connected to the system but not to the app
+2 -1
View File
@@ -70,7 +70,8 @@ UniversalBle.startScan();
UniversalBle.startScan(
scanFilter: ScanFilter(
withServices: ["SERVICE_UUID"],
withManufacturerData: ["MANUFACTURER_DATA"]
withManufacturerData: [ManufacturerDataFilter(companyIdentifier: COMPANY_IDENTIFIER)],
withNamePrefix: ["NAME_PREFIX"],
)
);