chipweinberger / flutter_blue_plus

Flutter plugin for connecting and communicationg with Bluetooth Low Energy devices, on Android, iOS, macOS
Other
787 stars 475 forks source link

[Perf]: use bytes instead of hex for platform communication #1059

Open chipweinberger opened 3 days ago

chipweinberger commented 3 days ago

What is your feature request?

In FBP, we we use hex strings for platform communication

Android: hexToBytes, bytesToHex iOS: convertHexToData,convertDataToHex

We should instead switch to raw bytes, and convert to hex only when we log.

chipweinberger commented 3 days ago

Anyone can implement this and open a PR if they want.