In my ipad when I go to Bluetooth Setting page I can see my Samsung headset device (HM 1100) in the connected list. However when I use the following code I could not get any accessories.
NSArray *accessories = [[EAAccessoryManager sharedAccessoryManager]
connectedAccessories];
EAAccessory *accessory = nil;
for (EAAccessory *obj in accessories)
{
NSLog(@"Found accessory named: %@", obj.name);
}
Is there a way for an app to detect which bluetooth devices are connected to the ipad? Is there any way to list any unknown bluetooth peripherals in iOS?