-
Notifications
You must be signed in to change notification settings - Fork 46
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
ESP8266 Enhance Performance #10
Comments
I'm not sure yet, if websocket realy is the problem, or just the additional delay the ESP is generating, but you will find out. At least a lower level network protocoll could reduce the performance need on the WLAN<>Serial gateway. I was already thinking if it's possible to crunch the Websocket<>Serial part of lw.comm-server into an ESP32 directly or at least a C.H.I.P or the new RPi Zero W, so we wouldn't need an additional server for such installations. You are right, it's enough to publish one electron installer (per OS) that has the app and the server in it. The integrated server doesn't bother much if not used. But I wouldn't drop the option to install the server (without GUI) separately on a machine like an RPi or a spare workshop PC, even if this will probably not be used very often. By the way: This is like Repetier Host works. All workstations also have a server installed, even if not used (but can be used for "cloud computing"). |
Agreed. I am working on a --nogui switch in the electron executable (aka
server only mode)
Do you want a couple ESP32s? PM me and i'll get a few ordered.
On Feb 28, 2017 6:19 PM, "Claudio Prezzi" <notifications@github.com> wrote:
I'm not sure yet, if websocket realy is the problem, or just the additional
delay the ESP is generating, but you will find out. At least a lower level
network protocoll could reduce the performance need on the WLAN<>Serial
gateway.
I was already thinking if it's possible to crunch the Websocket<>Serial
part of lw.comm-server into an ESP32 directly or at least a C.H.I.P or the
new RPi Zero W, so we wouldn't need a server for such installations.
You are right, it's enough to publish one electron installer (per OS) that
has the app and the server in it. The integrated server doesn't bother much
if not used. But I wouldn't drop the option to install the server (without
GUI) separately on a machine like an RPi or a spare workshop PC, even if
this will probably not be used very often.
By the way: This is like Repetier Host works. All workstations also have a
server installed, even if not used (but can be used for "cloud computing").
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr2_zdoOvMY26tHUzPm2HQRp9bZ6NGks5rhEkmgaJpZM4MOhXw>
.
|
I would still integrate a mini Webpage for mobile / tablet control in the server only version, if possible. Would be cool if you could organize some ESP32s for me. Sent you a PM. |
@openhardwarecoza Can you explain this a little more? |
Thats chapter two. Lets see if telnet gives us any improvement first...
For what its worth, OTA update is enabled in the sketch, so updating
firmware in the field is possible so dont worry too much
…On Feb 28, 2017 11:22 PM, "DarklyLabs" ***@***.***> wrote:
@openhardwarecoza <https://github.com/openhardwarecoza> Can you explain
this a little more?
We have machines out now which use the ESP setup you helped develop for
us. It is working as we would like with our machines appearing on the
network and allowing customers to connect directly to them.
Why change this now?
What will it improve?
Will customers with multiple machines be supported?
How will we instigate this update to the ESP firmware?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr21TZnw9efyPoQu4mXM3nyw1oqELgks5rhJAQgaJpZM4MOhXw>
.
|
@openhardwarecoza Ok, taking a very deep breath! |
Full details here
http://esp8266.github.io/Arduino/versions/2.0.0/doc/ota_updates/ota_updates.html
Basically if you are connected to the same wifi as the module, it pops up
on the Port list in Arduino
We can repack the flash tool into a little standalone one or integrated
into lw at some point as well so users dont need Arduino
…On Mar 1, 2017 12:32 AM, "DarklyLabs" ***@***.***> wrote:
@openhardwarecoza <https://github.com/openhardwarecoza> Ok, taking a very
deep breath!
Can you point me to where we can see how to perform an OTA update to the
ESP module?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr2xOk5ryivxaZt6eIhAbXAeOL6MgYks5rhKCOgaJpZM4MOhXw>
.
|
Should I activate Telnet in dev_comms? |
That would certainly help
…On Mar 1, 2017 10:57 AM, "Claudio Prezzi" ***@***.***> wrote:
Should I activate Telnet in dev_comms?
It's already implemented, but never tested, so I disabled it for the
moment.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr2zPYR8frH10ZXQ_xg-5s6MiPTALcks5rhTLkgaJpZM4MOhXw>
.
|
Ok, I'll do. |
Ok, so I created two very simple nodejs scripts (extracted sections from lw.comms-server) to time the delay between sending a gcode, and receiving back the OK: telnet
websocket
And the results are in! Websocket: 52-57ms |
Added bonus, this drops a whole extra protocol from our stack, since we can use the same protocol for smoothieware ethernet, Smoothieware wifi, grbl wifi and theoretically also tinyg wifi |
Cool. That sounds very promissing! |
I was positively surprised too! Didnt realize that the extra headers used to wrap the packet make such a huge time difference |
When I implemented the Telnet part, I tried a Telnet library first, but I realised that it is just overhead and decided to use the low level net lib. |
This means I have to extend the Telnet part in lw.comm-server to support multiple firmwares (like with USB) and not only smoothie, but that's not a big deal ;) |
Agreed. Net for the win.
Speaking of, node-serialport, unrelated of course. But
github.com/andrewhodel at some point mentioned he wanted to replace
serialport with fs and write to /dev/ttyusb* for example. *nix os's being
cool enough that ports are just virtual files. Sadly doesnt work for
windows of course so that halted. But same argument, skip the library and
go lowlevel
…On Mar 2, 2017 11:50 AM, "Claudio Prezzi" ***@***.***> wrote:
When I implemented the Telnet part, I tried a Telnet library first, but I
realised that it is just overhead and decided to use the low level net lib.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr2xK-MP6pbAQoTTsd2GImot8zL-Lzks5rhpDmgaJpZM4MOhXw>
.
|
Sorry (: - looks like the juice is worth the squeeze though (:
…On Mar 2, 2017 11:52 AM, "Claudio Prezzi" ***@***.***> wrote:
This means I have to extend the Telnet part in lw.comm-server to support
multiple firmwares (like USB) and not only smoothie, but that's not a big
deal ;)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr21YpvgVCIlSiaBp1dkhquvt14J0Vks5rhpF6gaJpZM4MOhXw>
.
|
Yep. I like low level anyway. Less dependency to libraries that I can't control ;) |
I hear you. 600mb worth of libraries to build a 8mb app. Though i will
admit that its more stable the lw3 though hehe
…On Mar 2, 2017 12:00 PM, "Claudio Prezzi" ***@***.***> wrote:
Yep. I like low level anyway. Less dependency to libraries that I can't
control ;)
That's a bit of a concern with LW4. We just have too many dependencies.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHVr23AjzPAGpAeIbZVgs7LvASvcDlcpks5rhpNMgaJpZM4MOhXw>
.
|
Just checking in to see if there has been any progress made with the Telnet approach or improving the current server performance over Wifi? |
Splitting off from #2 - to avoid the discussion drowning in that one
So... Off to start thinking about this. Now that we have comms in the backend for ESP I am considering replacing websocket with a telnet implementation instead. That has proved to work well in a benchtest earlier this week.
Open to thoughts though @cprezzi @DarklyLabs
Pitfalls
I am aware of the conns that we cant then just host LW somewhere and connect to an ESP on the LAN.
But as time has gone on, I honestly believe LW will be only an Electron app. Thats definitely the way to go for distribution, update, code signing, and all the other things we have to think about (speaking of code signing - https://mspoweruser.com/microsoft-just-added-the-best-way-of-preventing-installation-of-bloatware-in-windows-10/ is a particularly worrying thing. We may need to start signing with Authenticode and just get into the windows store if thats where its heading in the future). It also solves some of the cross platform issues. Its not like one can run a laser shop without at least one PC in the shop.... So I dont think ending up with a solution that requires the application to be installed somewhere, is a big issue. server.js can even be run on a SBC (Pi) without the GUI if thats needed
The text was updated successfully, but these errors were encountered: