Is there a way to listen in and read the message? Or do you want to set the timer to read it?
var characteristics = service.characteristics;
for(BluetoothCharacteristic c in characteristics) {
if (c.properties.read) {
print(value);
}
}
Logs
Is there a way to listen in and read the message? Or do you want to set the timer to read it?
var characteristics = service.characteristics;
for(BluetoothCharacteristic c in characteristics) {
if (c.properties.read) {
print(value);
}
}
FlutterBluePlus Version
ex.1.12
Flutter Version
ex.3.10
What OS?
All
OS Version
ex.iOS 12.3
Bluetooth Module
ESP32
What is your feature request?
Is there a way to listen in and read the message? Or do you want to set the timer to read it? var characteristics = service.characteristics; for(BluetoothCharacteristic c in characteristics) { if (c.properties.read) { print(value); } }
Logs