I have a small project which will use iPad as an information kiosk for visitors to browse and one of the requirements is that the iPad needs to communicate with Arduino (with ethernet shield) by sending commands (basically texts) through LAN (or internet) to a port of another display computer.
Been reading about iPad app development including XCode, Cocoa and Objective-C. It seemed to me there's a whole bunch of programming stuff specific to the iPad to familiarize with before I can jump into development. I have a couple of years of experience in LAMP stack but still it looks a bit daunting to get started since the deadline is just well over 3 weeks.
I am now weighing my options, instead of a native app, I am gathering information on building the app using HTML and CSS (web-based). All functions would be built into a web-based app and the iPad acts as a client, triggering the function inside the web-based app and sends the command to Arduino, and the Arduino would in turn send a command to the display computer.
And I thought for a while that I might be able to setup a webserver inside the display computer. Having the iPad opens a web-based app from the webserver and triggers whatever function called and a script in the app would send a command to itself at port 3040.
Now, questions:
- Saw this hackaton (Yelps 2nd Hackaton - The iPad Kegbot) the other day and it used iPad with Arduino but couldn't dig deeper. Any clue?
- If I were to make a native app, what are the steps to get the app available, to at least a few personal iPads since this app would only be used internally?
- Any iPad Arduino integration out there but unpublished (or undetected to my tiny radar)?
- I am familiar with HTML, JS and CSS but not to mobile safari, is there anything that I could use as a reference or library that I could use to speed up the web-based app development?
Much appreciated!