blemulator_flutter
blemulator_flutter copied to clipboard
BLEmulator Flutter: the Flutter BLE peripheral simulator
Based on https://stackoverflow.com/a/66092545/2223106 but apparently the type declarations mentioned there are not necessary now.
Hi, thanks for the fantastic libs! On the MacOS FlutterBleLIb currently throws an exception about missing plugin, even if's used with BleEmulator. Would it be possible to be able to...
This is required to have the dependency on both `flutter_ble_lib` and `blemulator` in the project.
Right now the only way to create a peripheral that is not advertised is to override `onScan()`. This should be easier to do. Add `isAdvertising` property visible to the user.
I'm trying to write a driver test with simulated device, that checks connection state presented in app UI when the BLE connection is lost. I've not found API in blemulator...
Right now you have to add all the simulated peripherals before calling `startPeripheralScan()`. If you do it later, it won't show up in scan results. My workaround for this is...
Currently JSON parsing is implemented without error handling in the native iOS part of the plugin. Whenever error occurs, it does so silently and application resumes with invalid parsing results.
First section on the main tab should contain rssi view, which should display most recent rssi value and a button to retrieve rssi value on demand.