
Best posts made by MIke 1
-
RE: z offsets for different tools
@MIke-1
This here at the very end fixted the issue!G1 R2 Z2 F2000
G1 R2 Z0 F2000Thanks to the Duet Team!
-
RE: Thermistor 104nt-4-r025h42g
@Phaedrux said in Thermistor 104nt-4-r025h42g:
irmware for the wifi module didn't flash properly. You can usually resolve this by connecting via USB and using
M587: Failed to add SSID to remembered list: another SPI transfer is pending ist the original Error
M997: File 0:/firmware/DuetWiFiServer.bin not found is the Error.
What went wrong. Such a dictionary is not existing on the sd card.Just copied the files...now on the best way to 3.45
Latest posts made by MIke 1
-
RE: 2 different brushes for 4 printheads
@gloomyandy
Thanx!Topic can be closed
-
RE: 2 different brushes for 4 printheads
@OwenD said in 2 different brushes for 4 printheads:
if state.currentTool != -1 ; check if a tool selected
if mod(state.currentTool,2) = 0 ; tool must be even number or zero
M98 P"brush_right.g"
else
M98 P"brush_left.g" ; must be odd numbered tool
else
echo "no tool selected"Can I use 2 commands after an if? How do I know when the if ends? I am missing () or endif to understand when something ends
-
RE: 2 different brushes for 4 printheads
Sorry for the late reply, I did not expect an answer.
But your code hepled me to better understand how the coding here works
I used the first line to make homing more save, as I can only do homing without a tool attached to the printheard.
I will keep my code because it ist more simpple to read and allows me to select a 3rd or 4th macro with different bush settings. It might get interesting, if I will use a vulacono hotened in the future.
Thanx!
-
RE: 2 different brushes for 4 printheads
@dc42
Oh thanks! Now it is working fine!You are all awsome!
-
RE: 2 different brushes for 4 printheads
@OwenD
Oh, I can't use this version because my tools are alternating. -
RE: 2 different brushes for 4 printheads
OK, did my best and got this error message:
T0
Error: in file macro line 2 column 21: meta command: unknown value 'active'if tools[0].state = active
M98 P"brush_right.g"
elif tools[1].state = active
M98 P"brush_left.g"
elif tools[2].state = active
M98 P"brush_right.g"
elif tools[3].state = active
M98 P"brush_left.g"
else
continue -
RE: 2 different brushes for 4 printheads
@jay_s_uk said in 2 different brushes for 4 printheads:
rrent too in the object model and if tool 0 and 1 do this else if 2 or 3 do that
That's what I need, but how does it work?
-
RE: 2 different brushes for 4 printheads
Oh, I am not sure if I understand the sentence correctly. Do you mean that I shall call the makro in one of the tool changes skripts? That's what I am doing now. But I would like to wipe on layer change controlled by superslicer.
-
2 different brushes for 4 printheads
Hello,
I use a E3D tool changer. Core xy, Duet 2 Wifi with extension board V3.45.I do have 2 V6 and 2 Hemera extruders. This makes it due to geometricl issues nessesary to use a brush on the left and right side.
Is there a way to impement a if case depending on the active extruder which macro to use?Thanks!
Mike