attempting to extrude with no tool selected - SOS
-
@index4d said in attempting to extrude with no tool selected - SOS:
; Z probe
M558 P5 C"0.io1.in" H8 F2000 I0 T5000 ; Set Z probe type to switch, the axes for which it is used and the dive height + speeds
M558 K1 P5 C"0.io2.in" H8 F2000 I0 T5000 ; create probe #1 for use with M585, active low
G31 P200 X0 Y0 Z0 ; Set Z probe trigger value, offset and trigger height; Z probe
M556 S50 X0 Y0 Z0 ; set orthogonal axis compensation parameters
M557 X50:700 Y50:700 S65 ; define mesh grid;Tool Switch
M558 K1 P5 C"0.io2.in" H8 F2000 I0 T5000 ; create probe #1 for use with M585, active low
G31 P200 X0 Y0 Z0You've got some problems here. Are you trying to define two probes? Or what are you meaning with tool switch?
When are you getting those errors?
-
@phaedrux
tool switch = is a z prob for tools.I´m getting this error when selecting tool.
-
I'm not exactly sure what you're trying to accomplish without more detail but the way you've got M558 setup right now isn't correct for multiple probes.
Review the M558 wiki entry
https://docs.duet3d.com/en/User_manual/Reference/Gcodes#m558-set-z-probe-typeYou've got M558 K1 P5 commands twice. Remove one.
The first M558 command will require a K0 to define it as the first probe. And then any time to configure or call a probe you need to specify which probe you mean to call by including K0 or K1 -
@index4d said in attempting to extrude with no tool selected - SOS:
I´m getting this error when selecting tool.
Post your tool change files as well. And your homing files.
And can you explain the overall goal of what you're trying to do?
-
error - can´t post
-
@index4d but I can post that there is an error... funny
-
Try again.
-
-
@phaedrux
strange errors....
I wanted to install a tool switch like in this thread. I thougth I have to solve problem ´´ attempting with no tool......´´.
Before it was never a problem, I´m not sure if it´s a problem for the tool switch. -
In that thread they used a switch as an endstop instead of another probe.
-
@Phaedrux ok yes I know but I don´t care.
It´s a thing to measure the z heigth. -
@phaedrux said in attempting to extrude with no tool selected - SOS:
I'm not exactly sure what you're trying to accomplish without more detail but the way you've got M558 setup right now isn't correct for multiple probes.
Review the M558 wiki entry
https://docs.duet3d.com/en/User_manual/Reference/Gcodes#m558-set-z-probe-typeYou've got M558 K1 P5 commands twice. Remove one.
The first M558 command will require a K0 to define it as the first probe. And then any time to configure or call a probe you need to specify which probe you mean to call by including K0 or K1Have you taken this post into consideration yet?