Is there a way via Arduino Processing (The program running on the computer) to open a network socket? I would like to open a client or server socket on the processing program so i can talk to it via WiFi and control my Arduino over serial connection. The serial connection stuff is working, all i want now is some way to control the processing over a network. Sure i could directly control the Arduino with a wifi shield, but don't worry about that please.
0
votes
2 Answers
1
votes
As I understand your question your looking to do networking in Processing. There is a library to do exactly that. It allows you to create simple clients or servers.
The Network library makes it easy to read and write data across machines on the Internet. It allows the creation clients and servers. A server connects to a list of clients for reading and writing data. A client is able to read and write data to a server.
Best of luck.