vote up 0 vote down star

Can anyone tell me how to program USB devices with Objective-C as an iPhone application?

I want to access USB device contents through iPhone

flag
1  
You probably won't be able to do that in Objective-C. As far as i know iPhones don't have USB host controllers, which you'll need if you want to connect USB devices to your iPhone.. – svens Nov 5 at 6:36
If you want make your device acts like both host and slave it must support usb on the go. In host mode you probably don't need write any code (until device drivers comes with OS). More interesting is slave mode, because You can write "virtual hardware" like mouses, modems etc. There is USB Gadget API for Linux for this. – Maciek Sawicki Nov 5 at 6:44

1 Answer

vote up 7 vote down

You can't. While it is possible to build USB based accessories for iPhone if you join the Made for iPhone program using the ExternalAccessory framework, you cannot access arbitrary USB devices. The SDK gives you access to devices that use a custom interface on top of USB, the exact details of which you get after signing up for the program and singing some more NDAs.

link|flag
Dude... I want to make an application, which loads all details on iPhone screen, when attached to USB cable... – Paresh Thakor Nov 5 at 12:00
consider that USB port of iPhone is being pushed with lots of data, and i want to just display those data on screen, so, iPhone screen will be like a terminal from MATRIX - the movie – Paresh Thakor Nov 5 at 12:58
Read his answer. You don't have low-level access to the USB port on a non-jailbroken iPhone. The only officially supported way of communicating with a USB device is through the ExternalAccessory framework, and only then with a Made for iPod device. – Brad Larson Nov 5 at 14:41
1  
Yes, I understood what you were asking the first time, you can't do it. The iPhone security architecture does not allow applications direct access to the USB port. If you have actually have a product you want to build you can join the Made for iPhone program (as I described above), but you depending on the exact details your USB device will need a new firmware or a redesign. If you just want to ditz around with a USB device you are out of luck. – Louis Gerbarg Nov 5 at 15:10
hello, Sorry for the delay but.... I'm trying to make an application on iPhone/Android/Blackberry devices which detects any USB plug action, i.e. if wire is plugged to USB, application must read all data pushed to the device... – Paresh Thakor Nov 11 at 8:03
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.