Dude, that thing is super cool. Thanks for sharing!
@edalton11078 жыл бұрын
Oh yes! I am glad you like it Feddie! cool piece of code for sure we are working on another version of the code that will allow us to zero tapered end mills as well so stay tuned for that!!
@edalton11078 жыл бұрын
Oh yes! I am glad you like it Feddie! cool piece of code for sure we are working on another version of the code that will allow us to zero tapered end mills as well so stay tuned for that!!
@billpearre9994 Жыл бұрын
This code works GREAT. Thanks Guys.
@AllenMassey8 жыл бұрын
Nice video! I am glad others are using my code. I have already had 4 people email me asking for it.
@charlesyork44616 жыл бұрын
i am trying to get my edge finder programed and cant find code. is this something you can email to me?
@Clyberful Жыл бұрын
Hello. Where can i get the edge finder and the code ?
@Clyberful Жыл бұрын
Hello can you share the code pls?
@tomlockwood533511 ай бұрын
I would love to use this, but unsure of how to install. I have the triple edge, but no instructions. Could you send me the code and some instructions how to install.
@aaronfarias88977 жыл бұрын
Great Guy, great video, amazing support! thanks!
@steinaralpenmob8 жыл бұрын
Thanks for great video, this is I have a lot of benefit. My machine (pt6012) has zero tool function, but I wonder whether this touch probe from step craft can be automatically installed on my machine running Mach3 and it's hard to get itThe Touch Probe device was designed to expand the capabilities of the Stepcraft CNC System by allowing you to be able to precisely locate starting positions for various objects that you wish to machine. Additionally, the Touch Probe can be used to 3D scan an object by systematically locating many points (more or less depending on the accuracy that you set) and creating a 3D “point cloud”. This point cloud can then be brought into software where it can be manipulated and converted into a 3D object such as an .stl file. This file can then be loaded into the Stepcraft CNC and be used to carve and object to create a duplicate model. The Touch Probe can also be used to scan an uneven surface to allow the Stepcraft CNC to cut, carve, or engrave along that uneven surface, i.e. you can engrave text along a curved surface.The Touch Probe was designed to work with a Stepcraft CNC running UCCNC software. The Touch Probe can be used with other CNC systems and software but Stepcraft would not be able to support such installations.The installation software that comes with the Touch Probe will install several macros and a new screen set for UCCNC. Custom buttons will now appear on the UCCNC screen to manage various functions for the Touch Probe.
@airgunningyup4 жыл бұрын
they sell the plates on amazon now , I just have no idea how to set up the wizard
@akira-hz4te Жыл бұрын
Can you share a link to the code?
@redem.greece8 жыл бұрын
Hi my friend, nice work. How about the half diameter of tool? Like that your tool start out of working part or i mistake? I make my own right now but i can't make to stop after the length i put to probe, still working it. You have any idea about it?
@IcanCwhatUsay6 жыл бұрын
Hi I emailed you for the code but got no response. Where do I find the code used in this video?
@IcanCwhatUsay6 жыл бұрын
Ok well Fuck this guy. He doesn't want to hold up to his claims that he'll share so whatever. if you want the code here you go. I'm using the touch off plate available on ebay from Blue OX. If you need help finding him, let me know. There's a few numbers you'll need to replace to match your particular plate. Once you do that, everything should be smooth sailing. They are the Offsets. This code is a work in progress so ymmv, it works great for me though. THIS CODE USES THE LOWER LEFT CORNER AS X0 Y0 Z0 'Ref : kzbin.info/www/bejne/f3rYmKSdit6ibac 'GOLD-1-31-2019 Brian Janiszewski Cutter_Size = Question ("What is the diameter of your cutter?") Plate_Z_Offset = Question ("What is the Touch Plate Thickness in, Ref 0.119?") Cutter_Size2 = Cutter_Size/2 Plate_X_Offset = 0.351 Plate_Y_Offset = 0.351 ' Plate_Z_Offset = 0.119 Plate_X_Offset1 = -1*(Plate_X_Offset+Cutter_Size2) Plate_Y_Offset1 = -1*(Plate_Y_Offset+Cutter_Size2) Message( "Probe Initialized" ) code "G92 X0Y0" If IsSuchSignal (22) Then code "G92 X0Y0Z0" 'Call SetDRO( 2, 0.00) ' Z Axis' 'Call SetDRO( 1, 0.00) ' Y Axis' 'Call SetDRO( 0, 0.00) ' X Axis' code "G90" code "G04 P3" 'Z Probing code "G31 Z-3.0 F5" While IsMoving() Wend 'code "G92 Z0" Call SetDRO(2, Plate_Z_Offset) code "G1 Z 0.5 F20" End If 'Y Probing If IsSuchSignal (22) Then code "G1 Y-1.0 F20" ' Move cutter towards front' code "G1 Z-0.125 F15" 'Move Cutter below Stock' code "G31 Y1.5 F5" ' Move cutter towards stock' While IsMoving() Wend 'code "G92 Y0" Call SetDro(1, Plate_Y_Offset1) ' Set Y axis to 0 at Touch' code "G1 Y-1.0 F20" ' Move toward front' code "G1 Z0.5 F20" ' Move cutter up ' code "G1 Y0.5 F20" ' Move cutter above stock' End If 'X Probing If IsSuchSignal (22) Then code "G1 X-1.0 F25" ' Move cutter to left of stock' code "G1 Z-0.125 F15" ' Move cutter below stock top' code "G31 X1.5 F5" ' Move cutter towards stock, right' While IsMoving() Wend 'code "G92 X0" Call SetDro(0, Plate_X_Offset1) ' Set X axis to 0 at Touch' code "G1 X-.5 F20" code "G1 Z0.5 F25" End If 'Return to XY (0,0) code "G1 Z.5 F30" code "G1 X0.0" '&Cutter_Size2 code "G1 Y0.0" '&Cutter_Size2
@chirots5 жыл бұрын
@@IcanCwhatUsay Thank you for the code.
@jimothysaveus2175 жыл бұрын
Thank you for the code. I have made modifications for zero offset( my bed is electrically isolated from the frame so when I cut aluminum I probe the material directly) kzbin.info/www/bejne/qauUloxpfJeVfZo Sub Main() Cutter_Size = Question ("What is the diameter of your tool?") Cutter_Size2 = Cutter_Size/2 Plate_X_Offset = 0.0 Plate_Y_Offset = 0.0 Plate_Z_Offset = 0.0 Plate_X_Offset1 = -1*(Plate_X_Offset+Cutter_Size2) Plate_Y_Offset1 = -1*(Plate_Y_Offset+Cutter_Size2) Message( "Probing routine initialized" ) code "G92 X0Y0" If IsSuchSignal (22) Then code "G92 X0Y0Z0" Sleep 10 code "G90" 'Z Probing code "G31 Z-3.0 F15" While IsMoving() Wend Sleep 50 code "G0 G91 Z0.03" While IsMoving() Wend code "G31 Z-1.0 F2" While IsMoving() Wend ZProbePos = GetVar(2002) code "G90" code "G0 Z" &ZProbePos While IsMoving() Wend Call SetDro(2, Plate_Z_Offset) Sleep 100 code "G0 Z0.25" End If 'Y Probing If IsSuchSignal (22) Then code "G0 Y-1.25" code "G0 Z-0.25" code "G31 Y2.0 F15" While IsMoving() Wend Sleep 50 code "G0 G91 Y-0.03" While IsMoving() Wend code "G31 Y0.25 F2" While IsMoving() Wend YProbePos = GetVar(2001) code "G90" code "G0 Y" &YProbePos While IsMoving() Wend Call SetDro(1, Plate_Y_Offset1) Sleep 100 code "G0 Y-0.5" code "G0 Z0.25" code "G0 Y0.5" End If 'X Probing If IsSuchSignal (22) Then code "G0 X-1.25" code "G0 Z-0.25" code "G31 X2.0 F15" While IsMoving() Wend Sleep 50 code "G0 G91 X-0.03" While IsMoving() Wend code "G31 X0.25 F2" While IsMoving() Wend XProbePos = GetVar(2000) code "G90" code "G0 X" &XProbePos While IsMoving() Wend Call SetDro(0, Plate_X_Offset1) Sleep 100 code "G0 X-0.5" code "G0 Z0.5" End If 'Return to XY (0,0) code "G0 Z0.5" code "G0 X0.0" code "G0 Y0.0" code "G0 G53 Z-0.05" While IsMoving() Wend Message( "Probing routine complete" ) End Sub
@ensaricokur17847 жыл бұрын
Can you use this code to find the center for a tapered tool?
@williamterry89127 жыл бұрын
Thank you!! Very Nice!
@kaden566 жыл бұрын
I noticed the geometry on the opposite side of the block seems to be read for using it to find the inside corner of something like a picture frame. Is that correct?
@garytaylor56465 жыл бұрын
Can I still get the code?
@josejalomo46143 жыл бұрын
Could you please email the code, thank you in advance,
@stevenmarston89237 жыл бұрын
Can you email me your modified script please? Thanks in advance!
@edalton11077 жыл бұрын
please shoot me your email address thanks
@maurodeamorim78897 жыл бұрын
Como balança a câmera da ate tontura!!!
@edalton11077 жыл бұрын
La cámara se monta en un trípode
@mattpiehl71228 жыл бұрын
Can you email me the Script Please
@edalton11078 жыл бұрын
Matt Piehl oh yeah for sure shoot me your email to workinwoods@gmail.com
@СкораяПомощь-ш7б7 жыл бұрын
ontheEDGE could you send me this script too, please? my email: sergey-sss@rambler.ru
@СкораяПомощь-ш7б7 жыл бұрын
ontheEDGE could you send me this script too, please? my email: sergey-sss@rambler.ru