Loading...
Logo
Processing Forum
Hello Processing Forum!
 
I'm doing a project (PARKING LOT)  with 5 sensors who may  communicate through arduino to processing. After processing has obtained sensor values ​​makes a sketch which shows 5 spots which represent 5 parking spaces and the color change means the availability of the parking lot (on / off).

I want to export the processing code on a website where any mobile device ( blackberry , android , iphone , tablets etc. .. ) can view information in real time.

I would like to know which language use  (html , php , xml, etc ) How to make this connection from processing to the Internet and how to make it, and If it is possible to do it.
 
Best regards, Dayana Lara from Venezuela.

Replies(1)

Well, your sketch won't work as an applet.
The problem is that the applet in the browser will try to access hardware on the computer of the person viewing the applet...
So indeed you probably need the hardware to be connected to the server, and the applet to get the information from the server, without Arduino-specific code. Ie. only using the HTTP, via the Network library, or the loadStrings function, perhaps