Loading...
Logo
Processing Forum
Hi
 
I am using processing with Arduino and could made good progress with it. I am looking for a way to execute an external program in windows once a condition has been satisfied.
 
Example:
 
When temrature is higher than x start monitoring program which will engage a webcam at certain location.

Replies(2)

On the Mac you can call whatever you want from within Java using the syntax Runtime.getRuntime().exec("some command");

In this case, it would be just like you typed "some command" into a terminal window.

Haven't tested on Windows, but surely there's something similar.