<CBCharacteristic: 0x281bc6100, UUID = FFF1, properties = 0x10, value = <500c0b62 00008f2c 10223344 55660000 00000000>, notifying = NO>
i want this value " <500c0b62 00008f2c 10223344 55660000 00000000>"
can any one help me ?
<CBCharacteristic: 0x281bc6100, UUID = FFF1, properties = 0x10, value = <500c0b62 00008f2c 10223344 55660000 00000000>, notifying = NO>
i want this value " <500c0b62 00008f2c 10223344 55660000 00000000>"
can any one help me ?
Try this
if(characteristic.value != nil){
if let ASCIIstring = NSString(data: characteristic.value!, encoding: String.Encoding.utf8.rawValue) {
characteristicASCIIValue = ASCIIstring
print("Value Recieved: \((characteristicASCIIValue as String))")
}
}