Probe Basic offset direction not seeming to work
- kello711
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 25
- Thank you received: 0
16 Mar 2026 01:28 #344337
by kello711
Probe Basic offset direction not seeming to work was created by kello711
I am trying to load up a 1" wood surfacing bit. I wanted to use the tool offset direction in the probing but it doesn't seem to work. I didn't find anything in the documentation to explain how. I added the diameter to the tool table to no avail. Also on the probing menu, what do "User Params" 1 and 2 do?
Please Log in or Create an account to join the conversation.
- hmnijp
- Offline
- Senior Member
-
Less
More
- Posts: 41
- Thank you received: 49
16 Mar 2026 12:20 #344351
by hmnijp
It should work. Using the diameter offset changes the coordinates of the touch point in the macro.
kcjengr.github.io/probe_basic/tool_lengt...f-parameter-settings
github.com/kcjengr/probe_basic/blob/main...ol_touch_off.ngc#L32
Replied by hmnijp on topic Probe Basic offset direction not seeming to work
I am trying to load up a 1" wood surfacing bit. I wanted to use the tool offset direction in the probing but it doesn't seem to work. I didn't find anything in the documentation to explain how. I added the diameter to the tool table to no avail. Also on the probing menu, what do "User Params" 1 and 2 do?
It should work. Using the diameter offset changes the coordinates of the touch point in the macro.
kcjengr.github.io/probe_basic/tool_lengt...f-parameter-settings
github.com/kcjengr/probe_basic/blob/main...ol_touch_off.ngc#L32
#<tool_radius_offset> = [#<tool_diameter> / 2]
#<left_offset_probing_position> = [#<tool_touch_x_coords> - #<tool_radius_offset>]
#<right_offset_probing_position> = [#<tool_touch_x_coords> + #<tool_radius_offset>]
#<front_offset_probing_position> = [#<tool_touch_y_coords> - #<tool_radius_offset>]
#<back_offset_probing_position> = [#<tool_touch_y_coords> + #<tool_radius_offset>]
o100 if [#<tool_diameter_offset_mode> EQ 1]
o101 if [#<tool_setter_offset_direction> EQ 0]
#<tool_touch_x_coords> = #<left_offset_probing_position>
o101 else if [#<tool_setter_offset_direction> EQ 1]
#<tool_touch_x_coords> = #<right_offset_probing_position>
o101 else if [#<tool_setter_offset_direction> EQ 2]
#<tool_touch_y_coords> = #<front_offset_probing_position>
o101 else if [#<tool_setter_offset_direction> EQ 3]
#<tool_touch_y_coords> = #<back_offset_probing_position>
o101 endif
o100 endifPlease Log in or Create an account to join the conversation.
- kello711
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 25
- Thank you received: 0
16 Mar 2026 16:12 - 16 Mar 2026 16:12 #344360
by kello711
Replied by kello711 on topic Probe Basic offset direction not seeming to work
Ok, I'll admit that I overlooked the functionality of the button. I tried inputing an offset but it wouldn't let me. "TOOL DIAM OFFSET" is a button that turns it on and changes the offset distance.
Thanks for setting me straight.
Thanks for setting me straight.
Last edit: 16 Mar 2026 16:12 by kello711. Reason: typo
Please Log in or Create an account to join the conversation.
- Lcvette
-
- Offline
- Moderator
-
Less
More
- Posts: 1613
- Thank you received: 751
16 Mar 2026 21:22 #344368
by Lcvette
Replied by Lcvette on topic Probe Basic offset direction not seeming to work
yup yup,, its pulled from the tool table and activated or not in the touchoff parameters.
user params 1 and 2 are there for you to use in any custom macro capacity. you can simply click on the label names and type your new name and it will store prsistently and you can look at the parameter names in the docs as what to pass to the subroutines. so if you wanted to add something specific to your machine you can do that with those and have realtime updating parameter entries in the ui. was just a "here ya go all" thing i figured might be useful and i had some space to use up so win win!
user params 1 and 2 are there for you to use in any custom macro capacity. you can simply click on the label names and type your new name and it will store prsistently and you can look at the parameter names in the docs as what to pass to the subroutines. so if you wanted to add something specific to your machine you can do that with those and have realtime updating parameter entries in the ui. was just a "here ya go all" thing i figured might be useful and i had some space to use up so win win!
The following user(s) said Thank You: tommylight
Please Log in or Create an account to join the conversation.
Moderators: KCJ, Lcvette
Time to create page: 0.109 seconds