Repetier server and duet
-
@bearer thanks but I don't want to use sys path cause I can't from repetier
I mean that I can't like everyone do from DWC I have to do it via console -
Then afaik your last option is to run each of the setting gcodes without parameters one by one and they'll spit out the current settings for that gcode. (for the most part at least). Or use DWC instead of repeteir server, its not the best utilization of the duet in any case.
-
@bearer it's not my choice xD
-
Well what you're asking to do isn't really possible.
To change settings on the Duet you must edit config.g for them to be persistent between resets.
Maybe I'm misunderstanding what you're trying to do.
-
@Dario02 said in Repetier server and duet:
a duet to a raspberry with repetier server 0.93.1
I assume that means the Pi has a USB serial port plugged into the Duet Board USB port, and that the Pi is running repetier.
The configuration above can send G-Codes to the Duet, and therefore could potentially print things, etc.
The configuration above CANNOT be used to fully manage and configure a Duet printer. Configuration requires obtaining, editing, and saving, the config.g file. There are many ways to do this, none of them are by way of the USB connection.
The ways that work include:
- Access the Duet board via a network and use the provided web interface (DWC - Duet Web Control). The fetch/edit/save capability is built in to this interface.
- Turn on FTP in the configuration of the printer (one time) and FTP the config.g, change it, FTP it back (and reset the printer).
- Physically remove the SD card and edit (there are a lot of variants here, depending on the exact configuration, ask more questions if this would work for you.)
- Access the Duet board via the network via documented web APIs, download, edit, and upload the file (and reset the printer)
- Keep a copy of config.g somewhere and "M28/M29" it onto the SD to make changes.
There are probably a few others that I've missed... but... again, NONE of them are via USB.
-
And, as mentioned, feeding G-Codes for print jobs to Duet via USB with repetier (or any other USB serial drip feed) bypasses a very large chunk of the value of the Duet.
You say you have no choice, and this does happen... but again, a Duet can be made to print via USB, bypassing most value... it cannot be configured by USB.
-
Well, you could use M28 and M29 to write a file to the SD card. I think that still works via USB.
-
Edited into the list above.
-
@Danal said in Repetier server and duet:
it cannot be configured by USB.
Well I guess it could... If you fed it all the commands that would have come from config.g it would work, but it would have to resend at every power up. If the homing files already existed they could be called, or you could probably send those manually too, but you'd get an error if some of your gcode ever called a homing file with G28.
I guess I just don't understand why.
-
@Phaedrux I have connected with a bridge raspberry pi and duet eth so that I can have both DWC and Repetier server, DWC to change configurations and debugging, repetier as GUI for raspberry touchscreen. Thank you guys.
-
@dario02 said in Repetier server and duet:
I have connected with a bridge raspberry pi and duet eth so that I can have both DWC and Repetier server, DWC to change configurations and debugging, repetier as GUI for raspberry touchscreen. Thank you guys.
Can you explain any detail how you have done this?
We would like to have DWC and Repetier Server in our configuration at the same time on Raspberry PI. We have installed both successfully, but we are not able to get Repetier Server to communicate with the Duet (6HC), although we can see both interfaces running on the same RPI.We have developed a Repetier server frontend touch interface for our client end users* (foolproof), which we would like to maintain, and at the same time, having DWC for technicians, developers and support engineers.
*End user: In our particular case, operators just trained on press buttons without any 3D printing knowledge nor technical skill at all.
-
Hi,
I am looking forward to maybe do the same here at work, where we have anycubics converted to duet, but maybe need a simpler frontend like repetier-server or astroprint or octoprint or so (have not yet dug into it, would be future work to look if the interfaces of them are simpler and kind of foolproof).
Could you elaborate a bit on how you achieved your setup/configuration
Thanks in advance!
L
-
@lbtqsb It's very simple.
-
Install the Repetier Server raspberry PI image from here: https://www.repetier-server.com/download-images/
The image include all the Duet software preinstalled. -
Edit the file /boot/repetier-image-setup.txt file in the image using Putty, and modify these lines from "0" to "1":
# Newer duet boards support a connection method called SBC where all communication is done via # SPI. It needs the DuetControlServer to control it. Set value to 1 to start the DuetControlServer # at boot and connect via SPI. Do this only if the spi pins are not connected with anything else! RUN_DSC=1 # Duet also provides a DuetWebServer to control the printer or install updates. We have configured # it to run on port 3000. To activate this as well set value to 1. RUN_DWS=1
- Save it and restart the Pi.
After this setup, you can access Repetier Server frontend at http://your_ip:3344 or Duet DWC frontend at http://your_ip:3000
-