For a project I need to send a key over Bluetooth to a BLE device.
I receive the key from my webservice as a NSString. For example 1234
Now what I need to send to the device is
Byte byteArray[] = {0x12, 0x34};
Is there someone that can give me some example code of how I can do this?
Thanks