Hi Everyone,
Someone will know how I can convert Hex value (from my ble sensor) to Float ?
Initially I did it in Java, But I would like to do it in Kotlin.
int intBits = Long.valueOf(hexBLEValue, 32).intValue();
float floatValue = Float.intBitsToFloat(intBits);
Thanks to all.
Regards