I have connected Barcode Scanner device
I want to know the paired status of it. Whether it is connected with device or not.
- (void) centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
self.connectingPeripheral = peripheral;
NSLog(@"@@@@@@Peripheral Name is:%@ Identifier:%@ Services:%@",peripheral.name,peripheral.identifier,peripheral.services);
[self.bluetoothManager connectPeripheral: self.connectingPeripheraloptions: nil];
}
I am getting information about Mac's which are nearby and enabled. But I am not getting Barcode Scanner information in this Method.
I need whether barcode scanner is connected to device or not.
can anyone suggest how to find connectivity of barcode scanner.
I appreciate your response, Thanks.