flutter_blue
flutter_blue copied to clipboard
how can i make the data that are received readable?
utf8.decode(value);
This should convert the data to readable format, assuming BLE device is sending in human readable data in bytes.
use it like following : characteristic.value.listen((value) { debugPrint("received => ${utf8.decode(value)}"); });