Relative Content

Tag Archive for androidkotlinbluetooth-lowenergy

Problems reading BLE characteristic

I am sending a byte array of size 8 every one second from HC08 module using software serial on arduino nano.However, when i try to read characteristic from my android app, where i also read every one second, onChracteristicread gets invokes every time but the received data is always 0. I am reading from SERVICE_UUID: UUID = UUID.fromString(“0000ffe0-0000-1000-8000-00805f9b34fb”)
CHARACTERISTIC_UUID: UUID = UUID.fromString(“0000ffe1-0000-1000-8000-00805f9b34fb”)
, which I think are the complete form of FFE0 and FFE1. Did i miss any step?