QtDragonHD tool sensor help for a maker space
23 Jan 2024 02:33 #291383
by cmorley
Replied by cmorley on topic QtDragonHD tool sensor help for a maker space
Did you get a chance to test the code?
Please Log in or Create an account to join the conversation.
- warwickben
- Offline
- Junior Member
Less
More
- Posts: 37
- Thank you received: 1
23 Jan 2024 02:34 #291384
by warwickben
Replied by warwickben on topic QtDragonHD tool sensor help for a maker space
I’ll check it this week. Had family member in the hospital etc and haven’t been able to get to my maker space.
Please Log in or Create an account to join the conversation.
23 Jan 2024 03:03 #291385
by cmorley
Replied by cmorley on topic QtDragonHD tool sensor help for a maker space
No worries just checking back - hope all is ok at home.
Please Log in or Create an account to join the conversation.
19 Mar 2024 22:19 #296346
by Flocki
Replied by Flocki on topic QtDragonHD tool sensor help for a maker space
Hi,
I hope this is the correct place for some testing feedback.
Reading the documentation I would have expected, that in "Auto"-mode after changing the tool manually behaves as follows:
1) Rapid move in X and Y to position defined in the INI’s [VERSA_TOOLSETTER] X and Y
2)Rapid move down in Z to position defined in the INI’s [VERSA_TOOLSETTER] Z
3)Probe down in Z to maximum defined in the INI’s [VERSA_TOOLSETTER] MAXPROBE
However Step 2 is happening at search-velocity rather then rapid.
Besides that working perfectly for me so far
I hope this is the correct place for some testing feedback.
Reading the documentation I would have expected, that in "Auto"-mode after changing the tool manually behaves as follows:
1) Rapid move in X and Y to position defined in the INI’s [VERSA_TOOLSETTER] X and Y
2)Rapid move down in Z to position defined in the INI’s [VERSA_TOOLSETTER] Z
3)Probe down in Z to maximum defined in the INI’s [VERSA_TOOLSETTER] MAXPROBE
However Step 2 is happening at search-velocity rather then rapid.
Besides that working perfectly for me so far
Please Log in or Create an account to join the conversation.
20 Mar 2024 02:14 #296362
by cmorley
Replied by cmorley on topic QtDragonHD tool sensor help for a maker space
I think you are speaking of the auto probe tool tool change.
Yes looks like the program qt_auto_probe_tool.ngc uses search velocity.
relevant code:
you could change it to:
Chris
Yes looks like the program qt_auto_probe_tool.ngc uses search velocity.
relevant code:
G53 G0 X[#<_ini[VERSA_TOOLSETTER]X>] Y[#<_ini[VERSA_TOOLSETTER]Y>]
F #<_hal[qtversaprobe.searchvel]>
G53 G1 Z[#<_ini[VERSA_TOOLSETTER]Z>]
you could change it to:
G53 G0 X[#<_ini[VERSA_TOOLSETTER]X>] Y[#<_ini[VERSA_TOOLSETTER]Y>]
G53 G0 Z[#<_ini[VERSA_TOOLSETTER]Z>]
Chris
Please Log in or Create an account to join the conversation.
20 Mar 2024 10:39 #296385
by Flocki
Replied by Flocki on topic QtDragonHD tool sensor help for a maker space
Thanks for your help, that indeed fixed it.
I am completely new to LinuxCNC, so sorry if I am not asking the correct questions, since I don't fully understand yet, how all the parts interact.
Maybe you are also able to assist with another thing:
My toolsetter has an 8 mm diameter, but my facemill has 10mm diameter and needs to be measured at the tips. I have seen some python-code here on the forum, that is applying an x-offset for this use-case, but that seems not to be part of the "stock"-installation-auto-probe-tool-change?
Any advice on how to activate that would be appreciated.
I am completely new to LinuxCNC, so sorry if I am not asking the correct questions, since I don't fully understand yet, how all the parts interact.
Maybe you are also able to assist with another thing:
My toolsetter has an 8 mm diameter, but my facemill has 10mm diameter and needs to be measured at the tips. I have seen some python-code here on the forum, that is applying an x-offset for this use-case, but that seems not to be part of the "stock"-installation-auto-probe-tool-change?
Any advice on how to activate that would be appreciated.
Please Log in or Create an account to join the conversation.
21 Mar 2024 02:09 #296426
by cmorley
Replied by cmorley on topic QtDragonHD tool sensor help for a maker space
Yes I have done some work on probing a tool and setting the tooltable. In that case diameter offsetting was added.
You could probably add this to auto probe ngc program.
Parameter 5410 should give yoy the tool diameter, as set from the tool table.
Then you would offset half that diameter.
You could probably add this to auto probe ngc program.
Parameter 5410 should give yoy the tool diameter, as set from the tool table.
Then you would offset half that diameter.
The following user(s) said Thank You: tommylight
Please Log in or Create an account to join the conversation.
21 Mar 2024 18:42 #296488
by Flocki
Replied by Flocki on topic QtDragonHD tool sensor help for a maker space
Thanks, that was the hint needed.
I have replaced:
With this:
I have replaced:
G53 G0 X[#<_ini[VERSA_TOOLSETTER]X>] Y[#<_ini[VERSA_TOOLSETTER]Y>]
F #<_hal[qtversaprobe.searchvel]>
G53 G0 Z[#<_ini[VERSA_TOOLSETTER]Z>]
With this:
O250 if [#5410 GT [#<_ini[VERSA_TOOLSETTER]DIAMETER>-1]]
#<toolprobe_x_offset> = [#5410/2]
O250 else
#<toolprobe_x_offset> = 0
O250 endif
G53 G0 X[#<_ini[VERSA_TOOLSETTER]X>+#<toolprobe_x_offset>] Y[#<_ini[VERSA_TOOLSETTER]Y>]
F #<_hal[qtversaprobe.searchvel]>
G53 G0 Z[#<_ini[VERSA_TOOLSETTER]Z>]
Please Log in or Create an account to join the conversation.
Moderators: cmorley
Time to create page: 0.091 seconds