I have to be able to communicate wirelessly which means it would either be MODBUS TCP/IP over wifi or MODBUS RTU over bluetooth. I cannot find any modbus implementations with an objectiveC wrapper, but I can write the wrapper over a C library. How should I go forward?

link|improve this question
feedback

1 Answer

You won't be able to use the Bluetooth method: the iPhone can only talk to devices that use the iPhone Accessory Protocol over Bluetooth.

Wifi should work though. Using the C wrapper will also work: objective-C is a superset of C, so you should be able to use the library unmodified.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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