Duet | G-code | WorkBee |
---|---|---|
X |
0 |
X-axis |
Y |
1 |
Left Y-axis |
Z |
2 |
Z-zxis |
E0 |
3 |
Right Y-axis |
E1 |
4 |
Unused |
Duet | G-code | WorkBee |
---|---|---|
H0 (E0) |
? |
|
H1 (E1) |
? |
Optional LED light ring |
Duet | G-code | WorkBee |
---|---|---|
X |
0? |
X-axis |
Y |
1? |
Y-axis |
Z |
2? |
Z-axis |
E0 |
3 |
Optional touch probe |
E1 |
4 |
Optional emergency stop |
-
2 always on fans
-
3 PWM fans
-
High current heated bed output
-
Bed thermistor
G-codes
Coordinate systems
G53 |
Use machine coordinates for the remainder of the current line |
G54 |
Use coordinate system 1 |
… |
|
G59 |
Use coordinate system 6 |
G19.1 |
Use coordinate system 7 |
G19.2 |
Use coordinate system 8 |
G19.3 |
Use coordinate system 9 |
Initially coordinate system 1 is in use, which is the work coordinate system shown in the web UI.
G10 L2 Ps Xx Yy Zz |
Set coordinate system Ps origin relative to machine coordinate system. |
G10 L20 Ps Xx Yy Zz |
Set coordinate system Ps origin relative to current tool. |
G92 Xx Yy Zn |
Sets machine cooridinate system origin relative to the current tool. |
G30 |
Z-probe at the current XY position and set the machine Z-origin to zero at the trigger height. Machine moves up 5mm after the probe. Set probe type with M558 first. |
Tools
Tn |
Select tool Tn. T-1 removes all tools. The tool must be defined with M563 before it can be selected. |
M563 Pn S"name" |
Define tool |
G10 Pn Xx Yy Zz |
Set offset for tool Pn |
M585 Xx Yy Zz En Ln Fn Sn Rn |
Probe offset for current tool |
G30 S-2 |
Set Z offset of current tool to make the current position Z=0 |
Homing
G28 [X] [Y] [Z] |
Home X/Y/Z. Without parameters, home all. |
When homing is perfmored the following scripts are run:
-
homeall.g
-
homex.g
-
homey.g
-
homez.g
Probing
M558 Pnnn Fnnn Hnnn Innn Rnnn Tnnn Annn Snnn Cn |
Set Z-probe type |
G31 Znnn |
Set Z-probe trigger height to Znnn |
G30 Pnnn Xnnn Ynn Znnn Hnnn Snnn |
Single Z-probe. Sets the machine Z-origin. |
M558 P0 |
Manual probe |
M558 P4 I1 |
Touch probe |
Mesh compensation
- Trigger height
-
The height where the probe triggers and is equal to zero for real, i.e., offset between probe and tool/head at Z=0. So if the probe triggers by touching the surface, then trigger height should be 0.
Trigger height is set with G31. Before using G31, M558 (Set Z probe type) must be set.
-
Important: Move to your XYZ zero and run
G92 X0 Y0 Z0
. This resets the machine coordinates, which are used by the mesh compensation. Unfortunately it does not use the work coordinates. This is important, otherwise you will crash your router when it tries to go below your waste board where the Z zero position normally is. -
M561
Cancel bed compensation -
M558
Set Z probe type:-
Manual probing:
M558 P0 [Hnnn]
-
P0
: No probe present. You will be promted to manually move the router until it touches your material -
Hnnn
Possibly set dive height in mm, e.g., H2 is 2mm
-
-
Touch probe:
M558 P4 I1 F100 H2
(100 mm/min)-
P4
: selects a switch for bed probing, default 3 (set withC
) which is endstop E0 on the Duet -
I1
: Invert reading -
F100
: feed rate 100 mm/min -
H2
: Dive height, 2 mm
-
-
-
G31 Z0
: Trigger height 0 -
M557
Define mesh size and spacing-
M557
Xaaa:bbb Yaaa:bbb Pnn-
aaa:bbb
min:max -
Pnn
Number of points
-
-
-
Move to center, do
G3
, to establish Z=0 -
G29
: Start probing
Laser
The Opt Lasers documentation suggests connecting the laser PWM signal to the heater3 pin, pin 8 on the expansion, which corresponds to P3 in the M452 command.
M452 P3 |
Set to laser mode on P3 using the default parameters |
M3 |
Laser on |
M5 |
Laser off |
Custom changes
Reduce Z max height so that your router wihtout a tool can’t hit the waste board.
M208 Z70 S0 ; Set max Z to 70
Pause
pause.g
changed to not home, just lift up:
G1 H1 Z1500 F1500 ; raise the Z to the highest position
Workzero
In workzero.g
remove the go the Z zero position. It is way too easy to hit the "Go to work zero" button in the web UI, which might cause your router to hit the work material.
; called GO TO WORK ZERO is pressed in WorkBee Control G1 H1 Z1500 F1500 ; raise the Z to the highest position G1 X0 Y0 F1500 ; go directly above the work zero position