• Spring 2024 meetup in Calgary - date Saturday, April 20/2024. discussion Please RSVP Here to confirm and get your invitation and the location details. RSVP NOW so organizers can plan to get sufficient food etc. It's Tomorrow Saturday! you can still RSVP until I stop checking my phone tomorrow More info and agenda
  • We are having email/registration problems again. Diagnosis is underway. New users sorry if you are having trouble getting registered. We are exploring different options to get registered. Contact the forum via another member or on facebook if you're stuck. Update -> we think it is fixed. Let us know if not.
  • Spring meet up in Ontario, April 6/2024. NEW LOCATION See Post #31 Discussion AND THE NEW LOCATION

Probe supplier?

Janger

(John)
Administrator
Vendor
In a CNC machine you need to accurately locate the 0,0,0 x,y,z location of the stock so when you run the program the machine knows where to mill etc. The probe makes this much easier to do. Here is a demo of a cnc keith :rolleyes: using one to locate the center of a ring gauge. You can also use probes for part inspection. Probe styli? stylus'? are really easy to break. Drop it. done. hit it, done. ram it into the table, done. skip ahead to about 1:20 to miss the sales pitch.

 

Janger

(John)
Administrator
Vendor
In this part I'm working on the little cartesian vector coordinate marker - the XYZ arrow thing - is located at the top of the part in the middle. That is part zero or 0,0,0 on the part Cartesian coordinates. I set that in the CAM software. Then the CNC machine needs to know where that is on the part relative to the coordinates inside the machine - and the probing helps you to locate that position.


1627526545167.png
 

Tom O

Ultra Member
Nice find I’m on my second one too I fired it up the other day to find the probe needed another $55.00 worth of batteries…….you know has it been a year already!
The site is bookmarked and I’ll probably get a couple spares that I hope I’ll never use.
Today my son and I will look at that Microcut lathe Dabbler was talking about so fingers crossed.
 

jcdammeyer

John
Premium Member
For my JGRO CNC router I use a PC board as a touch plate. I wrote a MACRO for MACH3.
-
response = MsgBox( "Auto Zeroing, Put Ground Clip on Tool bit", 1 )
If IsSuchSignal (22) Then
code "G31 Z-3 F20"
While IsMoving()
Wend
Call SetDRO( 2, 0.0625 )
code "G1 Z1"
While IsMoving()
Wend
response = MsgBox( "Auto Zeroing Complete. Remove Ground Clip", 1 )
End If
Not a lot different than what you can buy from AliExpress or Amazon for under $10. But at the time those weren't available.

At this point, for the milling machine, I use a Fowler Edge Probe for edge detection with my Shumatch DRO-350 and the Find Center function. Then, once at the XY==0 point has been determined I move to that based on the DRO readout and then zero the XY on LinuxCNC. For now I use the LED on the probe to know when I've touched an edge but the plan is to add a wire into the PC to provide the signal for when the edge is found.

I had ordered a tool touch sensor like this one Touch Sensor from China this summer but after a month the sender bailed and I got my money back.

So I'm still undecided on which direction to go.
 

Attachments

  • TouchPlate.jpg
    TouchPlate.jpg
    129.6 KB · Views: 2
Top