CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > Mach Software (ArtSoft software) > Mach Mill



This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-15-2007, 07:07 PM
 
Join Date: Dec 2005
Location: USA
Age: 36
Posts: 415
wildcat is on a distinguished road
Auto tool zero

What does the "Auto Tool Zero" button do in Mach3? I don't seem to be able to find any thing about it in the Mach3 manual.
Reply With Quote

  #2   Ban this user!
Old 01-16-2007, 09:53 AM
 
Join Date: Oct 2004
Location: US
Posts: 118
Barker806 is on a distinguished road

It is a button that you can add VB code too...
You can enter in code like this:
Zmove = 1.5 'amount the tool will move down to hit the probe
Zpos = GetDRO(2)
Tool = GetDRO (24)
ZOffset = .5 'enter height of probe here

OldZpos = Zpos
ZPos = Zpos - ZMove
Code "G31 Z" & ZPos & " F20.0"
While IsMoving()
Wend
Zpos = GetVar (2002)
If Zpos = OldZpos - ZMove Then
responce = MsgBox ("ERROR! The tool did not hit the probe and DRO was not set" , 4 , "Probe ERROR!" )
Else
SetDRO (2,ZOffset)
End If

Code "G00 G53 Z-.1"



This will set the Z to the right height over the part

Thanks
Brian
Reply With Quote

  #3   Ban this user!
Old 02-05-2007, 05:05 PM
 
Join Date: Jul 2006
Location: England
Posts: 236
Normsthename is on a distinguished road

This will set the Z to the right height over the part
I am really interested in getting this working on my CNC setup
Quick question.....
When the Z axis comes down and the bit touches the plate (3mm Thick for instance), the Z axis then backs up a set distance, say 10mm
You can then remove the plate and wire clip and press cycle start??
Does the VB code then add some sort of tool compensation so it knows that the Z axis is 13mm above the actual material???

TIA

Andy
Reply With Quote

  #4  
Old 02-05-2007, 05:43 PM
ger21's Avatar
Community Moderator
 
Join Date: Mar 2003
Location: Shelby Twp, MI....USA
Posts: 20,456
ger21 is on a distinguished road
Buy me a Beer?

Originally Posted by Normsthename View Post
Does the VB code then add some sort of tool compensation so it knows that the Z axis is 13mm above the actual material???

TIA

Andy
It resets the DRO to the correct Z height when it hit's the plate ( SetDRO (2,ZOffset)). Then when it moves up 10mm, it's just a normal 10mm Z move.
__________________
Gerry

Mach3 2010 Screenset
http://home.comcast.net/~cncwoodworker/2010.html

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #5   Ban this user!
Old 02-06-2007, 02:16 PM
 
Join Date: Jul 2006
Location: England
Posts: 236
Normsthename is on a distinguished road

Then when it moves up 10mm, it's just a normal 10mm Z move.
I understand that it resets the DRO, but do I need to change 'Z' origins in my CAD package to tell it that the tool is actually 13mm above the material??

Thanks

Andy
Reply With Quote

Sponsored Links
  #6  
Old 02-06-2007, 02:25 PM
ger21's Avatar
Community Moderator
 
Join Date: Mar 2003
Location: Shelby Twp, MI....USA
Posts: 20,456
ger21 is on a distinguished road
Buy me a Beer?

No, the origin (Z=0) is still the top of the workpiece. When Mach3 moves up 10mm, it knows it's 10mm above the work.
__________________
Gerry

Mach3 2010 Screenset
http://home.comcast.net/~cncwoodworker/2010.html

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #7   Ban this user!
Old 02-06-2007, 02:28 PM
 
Join Date: Dec 2005
Location: USA
Age: 36
Posts: 415
wildcat is on a distinguished road

Is the 13mm you refer to the height of your touch probe? If so, it would appear that you would alter the previously posted VB code and update the touch probe height.

Could someone post a reference to one of these electronic height probes? I have seen mechanical ones but not electrical ones that could be interfaced to a computer. I assume they have some mechanism for handling overshooting. The VB code looks like it probes at 20ipm and I know my setup would overshoot at that speed.
Reply With Quote

  #8   Ban this user!
Old 02-06-2007, 02:47 PM
 
Join Date: Jul 2006
Location: England
Posts: 236
Normsthename is on a distinguished road

s the 13mm you refer to the height of your touch probe?
The 13mm was just a 'test' figure which equated to a 3mm thick touch plate, and then the Z axis moves up 10mm to equal 13mm in total
Hope this helps.
Could someone post a reference to one of these electronic height probes?
All it consists of is an output wire from your breakout board, which you attach one end to a steel plate, and the other end you fit a crocodile clip or similar. You then put the touch plate under the bit, and attach the clip on to bit.
When the Z axis lowers and makes electrical contact, the VB code then does the rest.
You need to assign the output to the digitiser probe....I think.........

I will have a go at getting this working tomorrow.
No, the origin (Z=0) is still the top of the workpiece. When Mach3 moves up 10mm, it knows it's 10mm above the work.
Thanks GER21 for all your input

Andy


Andy
Reply With Quote

  #9   Ban this user!
Old 02-06-2007, 03:21 PM
 
Join Date: Dec 2005
Location: USA
Age: 36
Posts: 415
wildcat is on a distinguished road

A potential problem with this approach may occur if the Mach debounce and G31 feed rate high enough that before Mach reports the contact as real the tool has over shot. The mechanical ones that I have seem allow for overshooting (basically they are a fancy dial indicator). The steel plate would not be as forgiving. When I use an electronic edge finder I change the debounce to a low value and feed very slowly (1ipm). It would be really slick to be able to feed down fast and measure the overshoot. Perhaps with an electronic dial indicator?

Here is a DIY version of the mechanical height gauge.

http://www.industrialhobbies.com/how..._gauge_pt1.htm
Reply With Quote

  #10   Ban this user!
Old 02-06-2007, 03:57 PM
 
Join Date: Jul 2006
Location: England
Posts: 236
Normsthename is on a distinguished road

A potential problem with this approach may occur if the Mach debounce and G31 feed rate high enough that before Mach reports the contact as real the tool has over shot.
Other Mach users are using with no problems, I will try it and see!

Andy
Reply With Quote

Sponsored Links
  #11  
Old 02-06-2007, 05:00 PM
ger21's Avatar
Community Moderator
 
Join Date: Mar 2003
Location: Shelby Twp, MI....USA
Posts: 20,456
ger21 is on a distinguished road
Buy me a Beer?

Originally Posted by wildcat View Post
A potential problem with this approach may occur if the Mach debounce and G31 feed rate high enough that before Mach reports the contact as real the tool has over shot.
As you mentioned, you can set the feedrate in the VB script. It doesn't have to be 20. Set it low, and just jog down close before you run the Script.
__________________
Gerry

Mach3 2010 Screenset
http://home.comcast.net/~cncwoodworker/2010.html

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #12   Ban this user!
Old 02-08-2007, 01:15 PM
 
Join Date: Jul 2006
Location: England
Posts: 236
Normsthename is on a distinguished road

Today I made up the touch plate, and wired this into Pin 15 on my breakout board, and the other wire to a earth on the breakout board.
Finally I assigned the probe to this signal.
Everything works fine when I touch the crocodile clip to the plate, I get a probe signal showing on the diagnostics screen in Mach3
Problem is when I actually clip the crodile clip onto the router bit, I get an intermittent signal flashing on the probe signal display
I would guess the intermittent signal is flashing approx. twice every second. It is very random flashing signal.
The router is powered off at the electrical socket. As soon as I unclip the wire from the router bit, the flashing signal stops???
I thought that it could be picking up noise from the Stepper motors, so I positioned the plate very near to the stepper motors with the clip off the router bit, and no flashing??
I tried altering the debounce setting, and it made it better, but I have to have a large value (2000+) before it is usuable.
Its very odd, Anyone know why I am getting this.
I have temporally altered the VB script so I now lower the router bit manually while watching the diagnostics screen, and when the probe signal is solid, I press the auto tool zero button.
It then records the thickness of the touch plate, and then moves the Z axis back upto 15mm
This works fine, but I would like to know why I get the flashing signal.

TIA

Andy
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 12:31 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361