-1

We want our iPhone app to be able to communicate with a circuit board inside an air cleaner.

The circuit board inside the air cleaner should receive signals from the iPhone app, and based on those, do certain commands in the air cleaner.

So you should basically be able to use the iPhone app to control the air cleaner via bluetooth.

We are now searching for information regarding sending data via bluetooth to a circuit board and wonder if any of you have had any experience doing this.

Edit

I'm looking for a framework for this type of communication for iOS which can be uploaded to App Store, or some other resources that perhaps can help me.

Fernando Redondo
  • 1,557
  • 3
  • 20
  • 38

1 Answers1

1

Bluetooth functionality is available as part of the GameKit framework. Apple has some nice documentation on this available here. Basically, you can set up communications with server/client or peer-to-peer. You could be limited by whatever bluetooth functionality is in the air filter, but if your team is designing that, then I would suggest you review apples documentation to make sure you'll be able to interact properly.

If you want to communicate with non-apple bluetooth devices, though, you need to participate in the "Made for iPod" program, as you see in these two questions:

question 2046923

and

question 1065459

Information on the "Made for iPod" program can be found here

Community
  • 1
  • 1
Chris
  • 1,013
  • 1
  • 15
  • 35
  • An alternative would be to use WiFi instead of BlueTooth as it would allow you to skip the "Made for iPod" program. – TigerCoding Nov 13 '11 at 14:42