Running A Print
Last updated
Last updated
Running a print is best done using the Duet Web Console. To connect to your Duet via a network, visit the Network Setup guide. For an introduction on the Duet Web Console visit the Accessing Web Interface guide.
This guide assumes you have properly configured your printer with all the previous guides. That means:
You have homed all axes of your printer
You have configured your Z-probe offset
You have run and enabled mesh bed leveling
You have loaded filament into the extruder
In order to print something from the Duet board you must first upload the print to the Duet Board. This can be done via the Duet Web Console or by ejecting the SD card and uploading it with a computer.
Uploading a print via the Duet Web Console is the easiest way.
To print on the Duet board your print must have a .gcode file extension.
To create a G-code file you must slice a model with a slicer. Look at the What is Slicing? guide for guidance on how to create a .gcode file.
First, we will have to upload the G-code file we produced in the previous guide.
Connect to the Duet Web Console on the printer.
Then, press the G-code Files button and then press the Upload G-code File(s) button as shown in the image above. This will open a window which will allow you to select the G-code file you sliced.
Open your preferred file and wait for it to upload.
Power off your printer with the blue power switch.
Remove your microSD card from its slot on the Duet board by pressing it into the board.
Be careful as the microSD slot on the board is fragile.
Insert the microSD card with microSD card reader into your computer.
Open up the drive and select the folder gcodes. Upload all the .gcode prints you want into this folder.
When this has completed, safely eject the card and insert it back into the Duet board.
Power on the printer and reconnect to the Duet Web Console.
You should now be able to see all your prints in the G-Code Files tab on the console (shown in the image above).
Once the file is uploaded, you can click the file in order to print it. A window will pop-up confirming that you are about to print something. Click Yes.
Once you have selected a file to print it you can view the prints progress in the Print Status tab.
With various buttons on this screen you can manipulate your print. This can help in certain cases.
Change the print speed with the Speed Factor slider, on the right. This can be helpful to slow down your print during tricky parts, such as the first layer.
With the Z Baby Stepping buttons you can change the height of the Z during a print. This is very helpful to improve first layer stick during a print.
Extruder Factors sliders can be used to change the flow rate of the extruders.
Exercise caution when using these controls, improper use can quickly ruin your print.
Aside from these controls the Duet Web Console displays, a heap of cool statistics such as Layer time and length of filament required.
Remember that these statistics are estimates!
At any point during a print you can pause the print with the orange Pause Print button. This will execute a file on the microSD card called pause.g.
This will remove the extruder head from the print, and retract filament but keep the temperature steady.
You will then be able to execute G-code commands.
Be careful as you can easily damage your print and printer if you move the extruder into the print.
Whenever you want to continue printing you can press Resume. This will execute resume.g.
If you want to stop your print, you can press the Cancel button. This will execute stop.g.
This file is also called at the end of a print.
Continue on to the phase: Common Terminology.