-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple simultaneous connections + Service #52
Comments
Also regarding no. 2 above another option is to enable a websocket connection directly with the board (via an Ethernet or WiFi shield). This is likely too much for an Arduino Uno to handle, but it could work for a Due. It should also be possible with an Arduino Yun (I'm waiting for them to become available again so I get one and work on this). That way you don't need breakout server at all, you simply connect directly to the board from a JS application via a websocket connection. |
Thanks alot for your reply. i think that contributing to this project would be pleasure so i intend to do so when i am done gathering all the needed ideas as i am thinking about making a bridge server not only for IO boards but also for other serial devices to make web guys having more capabilities of desktop apps. thanks |
Sounds good. Also, both versions of Breakout Server should also be work as a general purpose serial to websocket bridge. They just don't currently fully meet your requirements. I can also add the ability to connect at different baud rates (currently both server versions are fixed at 57600). Chrome and Mozilla also have serial APIs. Each implementation is different though and I heard the Chrome version is changing. I haven't tried them yet but plan to make Breakout compatible once the dust has settled. |
You know how it is hard to make SerialPort module run on widows so i really do not go with node-js. I have tries Chrome APIs but it is not a good choice as it makes your app chained to one browser and you have to work around sandbox. so i really like the idea about your java server as it is a standalone far from browsers and plugins compatibly and all that stuff. it is not a must to be in java may be in python but the idea of tunneling serial ports to websockets in really good. |
Hello,
First of all the auto connect option is a very good step to make the server more usable for production and i think it will be better if:
1- the server can tun as a service so no GUI unless we need to change the config.
2- we can use more than one serial<->TCP bridge so it can handle all ports either broadcasting all serial ports to one netport or one to one connection so in stead of listing serial ports in a dropdown we can have a table with all ports each in raw with the corresponding netport and connect button + auto connect check.
it will be pefect. thanks.
The text was updated successfully, but these errors were encountered: