Probe connection

Check out Charley Thomas’s stuff on his 3 way zeroing probe.

Pin diagram for Grbl v0.8 and v0.9 with the traditional layout: (NOTE: The probe A5 pin is only available in Grbl v0.9.)

1 Like

You can order a pin header and cut it to length. Instead of soldering that one pin directly

You can use regular header pins (the breakaway type) and make your own 5 pin connector. That’s what I did to make the connection to the A0-A5 pins. Solder and heat shrink whatever wires you want to the 5 header pins on the short side, then I sort of fixed them together with a glob of hot glue and pressed it with my fingers while it was still malleable to get between the wires.

You can do what the dude in your picture did and just solder one wire to one header pin, but please use heat shrink or at least some hot glue to prevent accidental shorts. 5 header pins are much more difficult to accidentally pull out, though, so that’s my recommendation.

1 Like

I used some parts I had leftover from fixing my 3d printer, but as I was doing it I thought that if you had the right gauge sold copper wire to fit it probably would work just fine.

It does work fine, Aaron. Those female headers are used on Arduinos to enable hobbyists to easily prototype by inserting (I think it’s 20 AWG? Maybe 22?) solid core jumper wire directly. That is pretty easy to pull out, though, so I wouldn’t consider it acceptable for a long-term installation.

http://www.ebay.com/itm/1Pc-Milling-Tools-CNC-Z-Axis-Tool-Setting-Touch-Plate-Probe-Mach3-Router-Mill-/282018509000?hash=item41a99cf0c8:g:Q3gAAOSwr41XIDXW

This may sound silly, but why not just upgrade to the X Controller? It already has inputs for a probe.

Boooo! X Controller costs WAY more than 5 header pins!

@PhilJohnson, you can use two pairs of pliers to turn those 90 degree pins into 20 degree pins and have the wires point right at the exit hole in your enclosure.

1 Like

The problem is that the X Controller has almost exactly the same capability as the standard electronics package. The frequency to analog converter chip inside is nice, and the broken out screw terminal plugs for the A pins are cool, but those features aren’t worth the upgrade cost for all but the very well off.

Though, that is neither here nor there. Phil, I hope you update us with what you do for your A5 pin connections.

1 Like

I don’t use the Inventables case, so I just put this between the Arduino and the gShield

1 Like

This enables one to connect the probe wires etc via connectors using a screwdriver

arduino shield

regards Neal

2 Likes

Or you could use something like this:

This was my Original prototype, but I have a newer version with filter capacitors, as well as the load limiter resistors.

Ty Hoeffer
Palmyra, VA

1 Like

yes it sits between the arduino and the GShield.

NO, unfortunately Inventables didn’t design the box big enough to hold anything else.
I’m using a NEMA Waterproof box for mine ( without the lid at the moment. Haven’t gotten around to
drilling it for the fan ).

I haven’t really though about selling them. I think I could make a profit at $50. I built mine from stuff I already
had IN STOCK. The Circuit boards are pretty cheap to have made.

Ty

1 Like

I’d be glad to sell you one $40 + usps
Not teasing.

1 Like

I used a 5 pin small straight strip of pins, holds really well and I think being 5 pins release any strain. Plus the wire is ziptied to the negative side, so less stress on the arduino pins.

My connector is a small RC locking 2 pin connector, really handy to switch probes:

1 Like

Here is the g-code I used to make a z probe macro for UGS.
I use mm mode so you may want to change it if you use inches.

+================================================+
+

  • Auto Zero [PLATE] Macro +

+================================================+
+

  • Make sure PROBE PLATE and TOOL are connected +

±--------------------------------------------------+

  • Spindle OFF, not needed just added for extra safety +
    M5
  • XY plane selection, added to insure proper mode after startup +
    G17
  • Programming in mm, added to insure proper mode after startup +
    G21

±--------------------------------------------------

  • Probe Towards material, Error if not encountered in Z (mm), Feed (mm/min)+
  • Note if G91 (Relative Mode) is used it will stop after moving the specified distance in (mm), this is preferred +
  • Note if G90 (Absolute Mode) is used it will stop after reaching the specified Z absolute address, this may be an issue after startup +
    G91 G38.2 z-5 F6
  • Resets Specified Axis (Z) to specified value, use touch plate thickness (7mm) +
    G92 z7
  • Raises bit (6.25mm) clear of touch plate, Relative Addressing Mode used in case Z Axis reset fails+
    G91 G0 z6.25
  • Returning to Absolute Mode (G90)+
    G90

And here is the actual macro (without comments)

M5; G17; G21; G91 G38.2 z-10 F6; G92 z7; G91 G0 z6.25; G90

Yes, that should work.
I recommend using the documented version. The “actual Macro” is formatted for macro slot in UGS.

I edited the post to add a return to “absolute address mode” at the end just to be safe.

When I was testing I ran the probe well above the work surface and touched the probe to the bit to insure it worked properly so I didn’t risk driving the bit down into the work surface.

1 Like

The first post version:

+================================================+
+

  • Auto Zero [PLATE] Macro +

+================================================+

as opposed to the second post with the UGS Macro format version:

M5; G17; G21; G91 G38.2 z-10 F6; G92 z7; G91 G0 z6.25; G90

I made it an attachment:
Auto Zero Macro (mm).ngc (1.1 KB)

1 Like