Subjects related to Apple iOS EAAccessory programming.

learn more… | top users | synonyms

0
votes
3answers
72 views

Star Micronics TSP650II bluetooth printer, can't write to EASession.OutputStream

I'm trying to print a label with a Star Micronics TSP650II printer in a monotouch app. The problem is that session.OutputStream.HasSpaceAvailable() always returns false. What am I missing? the C# ...
0
votes
1answer
54 views

NSOutputStream of EASession stops sending data to EAAccessory

I have a project that connects to an external accessory and communicates a small amount of data to and from an iOS app. I am able to setup the session and streams like apple does in their EADemo ...
1
vote
0answers
45 views

EAAccessory with car Bluetooth

I am developing an app which needs to detect if an iPhone is connected to a car. I would be using EAAccessory. My question is will EAAccessory detect this? Is the car Bluetooth(on which i am able to ...
0
votes
0answers
79 views

Get EAAccessoryDidConnectNotification when app is in background (iOS)

In my 'viewDidLoad'in ViewController.m, I am registering to the NSNotificationCenter defaultCenter with 'EAAccessoryDidConnectNotification' and 'EAAccessoryDidDisconnectNotification' When my app is ...
2
votes
2answers
205 views

Connect and Disconnect USB Cable to iPhone using IOS programming

I am developing a iPhone app like " Eject device" on computer. which means, when I connect USB cable for connecting to computer, this application just disconnect that connection by a single Click. I ...
0
votes
0answers
105 views

EAAccessory NSInputStream receive text string

I understand about communicating with external accessories. You send some bytes of data, each byte is linked to a certain command or option. How does this work when you're sending or receiving ...
1
vote
0answers
366 views

Connecting External Accessories Bluetooth devices without user interaction

According to EAAccessoryManager Class Reference from iOS 6 onward using showBluetoothAccessoryPickerWithNameFilter we can show a Accessory picker that will help user to connect External Accessories ...
0
votes
0answers
278 views

Ios ExternalAccessory bluetooth problems

I am having some difficulties getting ExternalAccessory running for my ipod... I have a bluecove bluetooth listener running on my computer (mac, Mountain Lion) in java (Code for that here: ...
0
votes
0answers
194 views

How to get the bluetooth device name in iPhone?

I connected my bluetooth device to iPod in setting. After that I run the sample code EADemo ...
0
votes
1answer
1k views

IOS: How to detect make/model of paired Bluetooth 3.0 device?

IOS noob question here, though I hope its not a repetition. Developing on XCode 4.3 targeting IOS 4+. I am struggling with finding guidance on how to get a list of paired Bluetooth devices. Seems like ...
1
vote
2answers
163 views

Objective C - Store EAAccessory to NSUserDefaults

In a project I have to make, I am working with external accessories, and the framework ExternalAccessory. (I can connect to one and only one accessory). The connection is easy, sending data is not ...
6
votes
1answer
181 views

When would [UIScreen screens] return an empty array

I'm seeing odd behavior from [UIScreen screens] in iOS 5.0.1 in reports we log to Flurry on crashes. There are times when [UIScreen screens] will return an empty array. Our app implements support ...
3
votes
0answers
682 views

EASession Leaks

I have an app that connects to an accessory, and the EASession that I create in order to communicate with the accessory leaks when you disconnect the accessory. When the accessory connects, I get a ...
0
votes
1answer
295 views

How to get started with developing accessories for iOS?

We want to develop iOS accessories which plug into the 30-pin dock connector. Is there a good starting point for beginners which talks about what can and what can't be done with the EAAccessory ...
1
vote
1answer
259 views

What is the purpose of the – accessoryDidDisconnect: method within the EAAccessoryDelegate?

I've been working on an iOS implementation that is connecting to hardware and, as such, I am having to make use of the External Accessory framework. In order to interact with devices, you need to ...
3
votes
2answers
919 views

Detecting Bluetooth Keyboard in iPad App

In my app i am having customer info form on which number of text fields i have used, now when user edits any field i need to move whole view up so that the editing text field wont get under iPad's ...
2
votes
1answer
1k views

Communicating an iOS device with a non iOS device

As shown in the Apple documentation, communication with a certfied accessory (certified by apple) can be made through te EAAccessory Framework. But I am getting a little bit confused because some ...