Elegoo 3D Printers Forum
Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - Printable Version

+- Elegoo 3D Printers Forum (https://www.elegoomars.com/forum)
+-- Forum: Elegoo Mars 3D Printer (https://www.elegoomars.com/forum/forumdisplay.php?fid=1)
+--- Forum: Printer Mods / Add-Ons (https://www.elegoomars.com/forum/forumdisplay.php?fid=4)
+--- Thread: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) (/showthread.php?tid=15)

Pages: 1 2 3 4 5 6 7


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - Lecoyote - 07-22-2019

Thank you very much! Works like a charm! Big Grin Big Grin


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - admin - 07-22-2019

(07-22-2019, 03:27 AM)Lecoyote Wrote: Thank you very much! Works like a charm!  Big Grin Big Grin

Awesome!!!


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - loloboss83 - 08-05-2019

hello , i would like to know if it work with CPL ?


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - admin - 08-06-2019

(08-05-2019, 12:59 AM)loloboss83 Wrote: hello , i would like to know if it work with CPL ?

CPL?


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - loloboss83 - 08-08-2019

(08-06-2019, 03:23 PM)admin Wrote:
(08-05-2019, 12:59 AM)loloboss83 Wrote: hello , i would like to know if it work with CPL ?

CPL?
yes like this 
https://www.amazon.fr/s?k=prise+cpl&__mk_fr_FR=%C3%85M%C3%85%C5%BD%C3%95%C3%91&ref=nb_sb_noss_2


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - admin - 08-10-2019

Technically, ethernet is ethernet. As long as that cpl is able to be configured to your home network, there is no reason that it shouldn't work Smile


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - loloboss83 - 08-10-2019

Is it possible to accelerate transfert ? Because it s very slow


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - loloboss83 - 08-11-2019

hello is it possible to combe back to the original firmware , and interface please ?


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - davipet - 08-12-2019

Hey!

Is there any known api to check printers status, progress, error etc. via Network?

I would like to get notified via Pushover, Telegram or something when the printjob is done.

(Someting like "Octoprint" for FDM-Printers would be nice)

Greetings

David


RE: Ethernet Enabled Printing (Support for ChiTuBox 1.4.0 + 1.5.0) - blubarist - 08-14-2019

Hi,

I have just looked into this... thank you for posting about ethernet support!

Some findings from me:
- At least with the latest firmware, it seems like the UI firmware file is the only one that is needed (edit: I forgot that this is also in the READ ME file, but I wanted to point that out anyway)
- The settings gcode file is also not necessary... it doesn't seem to change anything network related
- To get ChiTuBox to use network support, the only relevant setting in the profile is "machineType". It must be changed from "ELEGOO MARS" to "default".
You can export an existing/default ELEGOO MARS Profile, change that value and import it again after adding a new "default" printer.


(08-12-2019, 12:21 AM)davipet Wrote: Is there any known api to check printers status, progress, error etc. via Network?

It looks like ChitTuBox simply communicates with the printer by G codes over UDP.
And it searches the printer by sending a broadcast to UDP port 3000 with the G code M99999.

For example with Linux, you can do the same this way:
Code:
echo -n M99999 | socat - UDP4-DATAGRAM:192.168.1.255:3000,so-broadcast
(of course, you have to change the broadcast address so it matches your network)

And you can get the print status from the known printer IP via:
Code:
echo -n M27 | nc -w 1 -u 192.168.1.123 3000
(broadcast like above also works...)

I have also found this with more G codes (that's where I got M27 from):
https://github.com/Photonsters/anycubic-photon-docs/tree/master/photon-blueprints#confirmed-gcode-commands-via-serial