QtDragonHD tool sensor help for a maker space
- cmorley
- Offline
- Moderator
-
Less
More
- Posts: 7229
- Thank you received: 2105
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
- Senior Member
-
Less
More
- Posts: 40
- 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.
- cmorley
- Offline
- Moderator
-
Less
More
- Posts: 7229
- Thank you received: 2105
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.
- Flocki
- Offline
- New Member
-
Less
More
- Posts: 3
- Thank you received: 0
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.
- cmorley
- Offline
- Moderator
-
Less
More
- Posts: 7229
- Thank you received: 2105
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.
- Flocki
- Offline
- New Member
-
Less
More
- Posts: 3
- Thank you received: 0
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.
- cmorley
- Offline
- Moderator
-
Less
More
- Posts: 7229
- Thank you received: 2105
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.
- Flocki
- Offline
- New Member
-
Less
More
- Posts: 3
- Thank you received: 0
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.
- Clark222
- Offline
- New Member
-
Less
More
- Posts: 1
- Thank you received: 1
22 Sep 2025 23:12 #335310
by Clark222
Replied by Clark222 on topic QtDragonHD tool sensor help for a maker space
I've been using Linuxcnc for the past 5-6 years (I use to be Clark22 but I got locked out). More accurately, I've been making baby steps towards getting my cnc to work properly before taking an extended break (build the machine and get it moving, stop for a long break, get the spindle working properly, take a break, get endstops working then take a break ......). The last big step was getting the spring probe and edge probe to play nicely with each other and then to get the auto tool change and updated tool.table working. I've don't tend to ask for help but rather keep plugging at it until I get it figured out. The past month has been going around and around, but today I finally got it working. I've seen you ask for people to test out the probe_routine.py and the versa_probe.ui and I wanted to let you know that I got it working today and I really like how it's doing. I have a lot more testing on it to make sure it's actually working but after a month the tool.tbl finally updates. For anyone else wanting to try these out there's on part that was causing a lot of confusion for me. the python_probe.py goes in the /usr/lib/python3/dist-packages/qtvcp/widgets/probe_routines.py directory and the versa_probe.ui goes in the /usr/share/qtvcp/widgets_ui directory. For some reason I had the versa_probe.us in the first directory (who knows how it ended up in there). I thought clarifying that might help somebody.
The following user(s) said Thank You: cmorley
Please Log in or Create an account to join the conversation.
Moderators: cmorley
Time to create page: 0.094 seconds