In my BLE project, I will write a hex data which include time in it.
The hex data is like this below:
<160922162300> , what mean 2016 - 09 - 22 - 16:23:00
I use the function to write the data to my BLE develop board:
[weakSelf.currPeripheral writeValue:myData forCharacteristic:characteristic type:CBCharacteristicPropertyWrite];
and the myData content is <160922162300>
How can I get the content is the certain info hex data?  
 
    