JoelHein89
Posts: 3
Joined: Fri Dec 27, 2019 6:08 am

connect simplify3d to my duet web control

Hi everybody

I am a new member in this forum. I have been 3D printing for several years.
I like working on Simplify3D.
i own a Creality ender 3 and a Formlabs aswell.
i have been building one 3D Printer by myself too.

I have got a question.
How do i connect Simplify3D to my Duet Web Control.?

At the moment i have to work with the Prusaslicer because it is easy to connect it with my Duet web control
i have to put just the host name :Duet
and the IP adress. and thats all.

but at Simplify3D it is much more difficult to find out how to connect it to my duet web control.

Does anyone could give me an advice.?

unfortunately im not used to working with computers that much. :? :?

thanks nevertheless helping me :)

yours faithfully

Hein Joel
Ret
Posts: 80
Joined: Wed Feb 07, 2018 4:26 pm

Re: connect simplify3d to my duet web control

You can't directly upload gcode from S3D to the duet by itself. You're best off just exporting the gcode from S3D and uploading it via duets web interface.
Last edited by Ret on Thu Jan 02, 2020 2:21 pm, edited 1 time in total.
JoelHein89
Posts: 3
Joined: Fri Dec 27, 2019 6:08 am

Re: connect simplify3d to my duet web control

Hi Ret

Thanks for answer me

Is it possible to show me what exactly i have to do?
Are there any description on the web because i have searched the whole day how to do ut unfortunately without any success😔😔😔

It would be great to get some help
😉😁

Yours faithfully

Hein Joel
Mogal
Posts: 34
Joined: Mon Mar 20, 2017 12:55 pm

Re: connect simplify3d to my duet web control

You CAN upload directly from S3D.
(Replace the X's with your IP address)

curl --data-binary "@[output_filepath]" "http://192.168.0.8/rr_upload?name=gcode ... e&time=YYY"
curl "http://192.168.0.8/rr_disconnect"

-----
Pls don't ask me how it works.

I think I found this info over on the DUET forum.
Last edited by Mogal on Fri Jan 03, 2020 12:31 am, edited 1 time in total.
JoelHein89
Posts: 3
Joined: Fri Dec 27, 2019 6:08 am

Re: connect simplify3d to my duet web control

I already work with The web interface
With my own IP adress.
But i have to find where i can get the connection from simplify 3d to my web interface to upload there my g code files.

I have to know how i can upload the gcode files from the simplify 3d to the web interface.

Yours faithfully

Hein Joel
Attachments
Screenshot_20191228_191946_com.android.chrome.jpg
Ret
Posts: 80
Joined: Wed Feb 07, 2018 4:26 pm

Re: connect simplify3d to my duet web control

@JoelHein89

I should have been more clear in my previous post. S3D doesn't natively support duet WiFi/Ethernet printing. There are work arounds to get it to semi-work though.

You can use curl like Mogal said, but you may need to install curl depending on what OS you're on. Even when uploading from S3D with curl scripts, its not very practical and sometimes doesn't work, which is why I suggested you stay with the web interface.

Add this curl script to post processing within S3D(Change the IP to your printer's IP) if you still wish to send gcode from S3D to your printer:

Code: Select all

curl --data-binary "@[output_filepath]" "http://192.168.1.250/rr_upload?name=gcodes/[output_filename].gcode"
curl "http://192.168.1.250/rr_gcode?gcode=M32[output_filename].gcode" 
curl "http://192.168.1.250/rr_disconnect"
Click "Save Toolpaths to Disk" and save your file to your disk. Once you've done that, it will automatically upload to your printer and start immediately if you've done it correctly.

Return to “Feature Requests”