Hi everyone, I have been working on a project for a while now and have got it up and running thanks to the wealth of knowledge here
(thanks everyone for sharing all your experiences) I am at the point where i have made an android app that sends serial messages via Bluetooth to a arduino which takes the messages and controls a sainsmart relay board. Pretty simple serial communication type stuff. Now I am at the point where I want to expand. I am looking to create a network that will read messages much like a CAN bus but will not have the physical limitation that CAN has. My idea would be to have a arduino chat server (telnet) and arduino chat clients. A android app that will setup telnet automatically and when a button is pressed, send a message to the server. The Arduino's would read the telnet messages as a string and take action as needed. This would make it kind of like a chat bus? Anyway, the Arduino's would all be connected by ethernet so distance would not be an issue. So I guess the questions I have are:
Can you have multiple telnet clients connected at the same and all sharing the same session?
Would this method be a good way to provide communication between arduinos over ethernet?
Can anyone see a failure with this setup?
Thanks