1
I have the following question. Today I connect to external devices using EAAccessoryManager
for identification of paired bluetooth devices on the iPad and the EASession
to establish a session with the device. I would like to know if there is something similar to EASession
in the Core Foundation
, because the implementation I need to accomplish for a legacy system in C.
Could you explain better what you mean by legacy C system and what you need? You don’t even have access to
ExternalAccessory
nor theCoreBluetooth
?– fpg1503
So, in the communication between an external device (Pinpad) and my application in objective-c I use today the available classes to perform this task (I did this for tests). My application has long been written in C language for communication with these devices. I actually just wanted to know if I can handle devices like I’m doing in objective-c using C language (maybe using the Core Foundation framework) or any other way available for this, but the code has to be in a *.c. source I hope I’ve been able to explain.
– Cyber