Search found 16 matches

by miro.kahanek
Sun May 03, 2015 7:43 pm
Forum: Problems and questions
Topic: Large Plate Marker job, touch off only at start - need more
Replies: 10
Views: 5755

Thank you Les, The more i keep staring at post, learning and applying your fixes - the more I want to mess with it... :D 1) you are right, my fix is dependent on scriber offset, so i simply replaced "scriberZ" with " safeZ " :wink:, it works, so I am sticking with this - the reas...
by miro.kahanek
Sat May 02, 2015 1:25 pm
Forum: Problems and questions
Topic: Safe Z During Scribe Operation
Replies: 3
Views: 2322

If your scriber is fixed to the same axis as torch and you trying to disable z axis moves on scribe rapid moves, then CandCNC post I am using has it covered. Check these sections of the post - see how they solved it, maybe it helps to fix your post... --this value when set to "true" will s...
by miro.kahanek
Sat May 02, 2015 12:31 pm
Forum: Problems and questions
Topic: Large Plate Marker job, touch off only at start - need more
Replies: 10
Views: 5755

Thank you Les! New function Reference() worked - with two minor issues: 1) it referenced also between two lines of 6mm cross mark for holes (not necessary) - so I changed the first setting in post to: "refDistance = 300" - DONE 2) it did not raise the torch after referencing while moving p...
by miro.kahanek
Thu Apr 30, 2015 11:11 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

You may also want to adjust the feedrate for the scribing. Thank you Vmax, I didn't expect anybody here except Les pays proper attention to code sections, I appreciate it. :) What feedrate (metric of course) for scribing do you suggest from your own experience? Especially for precise cross marks an...
by miro.kahanek
Tue Apr 28, 2015 3:18 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

As a thought would it not be better to create the entire X mark in one operation rather than breaking it up into 2 functions. Lower the scribe one time run the X code then raise the scriber. As is you are lowering the scriber , scribe one line then raise the scriber , then lower the scribet again t...
by miro.kahanek
Tue Apr 28, 2015 9:43 am
Forum: Problems and questions
Topic: Large Plate Marker job, touch off only at start - need more
Replies: 10
Views: 5755

Thank you Les, Tested - but nope, it didn't do the trick... Please note: plate marker is mounted beside the plasma torch o Z axis (on the right), scriberX = -88.1 scriberY = 32.8 scriberZ = 14 Here is what it does exactly in combination with new function OnDrill() on simple job below: 1) plasma torc...
by miro.kahanek
Mon Apr 27, 2015 10:47 pm
Forum: Problems and questions
Topic: Large Plate Marker job, touch off only at start - need more
Replies: 10
Views: 5755

Hi again Les, I had a feeling I am not going to get away with 2 lines that easy... Solution works - tested, it does reference before each plate marker segment how we wanted, however, it does not move the torch to the starting point of each segment - ignoring Scriber offsets... Would you please be ab...
by miro.kahanek
Mon Apr 27, 2015 9:45 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

Thank you! Just tested, this one is flawless! :mrgreen: Very very useful... we deserve a beer now... For anyone else tired of drilling after plasma pierced holes, here is the OnDrill() function crafted to perfection by Les Newell : function OnDrill() if toolClass == "MarkerTool&...
by miro.kahanek
Mon Apr 27, 2015 7:46 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

Hi Les, I just run a test job, your OnDrill() version works, I love the solution to use drill operation with plate marker, no more extra sketching in CAD... 1) yes, there is a small typo on second line in function: "local ex = endY " should be " local ex = endX " before correctio...
by miro.kahanek
Mon Apr 27, 2015 1:40 pm
Forum: Problems and questions
Topic: Large Plate Marker job, touch off only at start - need more
Replies: 10
Views: 5755

Only 2 lines to fix? Awesome!
I feel embarrassed... :oops:

Thank you very much for express solution Les.
by miro.kahanek
Mon Apr 27, 2015 1:31 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

Thank you so much, I will try this one! :D
by miro.kahanek
Mon Apr 27, 2015 6:31 am
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

ArchieF wrote:Having a lot of points would create a large nc-file.
I'd add a sub-program call in the pp and write the gcode vmax shows into that sub-prog.
Richard
Hi Richard,

sub-program call ??? :shock:

How / where exactly do I write that gcode and call it? :oops:

Thanks.
by miro.kahanek
Mon Apr 27, 2015 6:15 am
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

You can add the Gcode to do a simple X mark at the drill point center from the post. From the drill center point Mxxx (turn on scribe) G91 (set Inc mode) G1 X-.500 (move to startpoint) G1 X1.00 G1 X-.500 G1 Y.500 G1 Y-1.00 G1 Y.500 Mxxx (turn off scribe) G90 (reset mode to ABS) Now everytime you ca...
by miro.kahanek
Sun Apr 26, 2015 8:54 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

Hi Sean, Thanks for your input, could you be please more specific? Part example: steel plate: 6mm hole diameter: 6mm number of holes: 30 average distance between holes: 50mm - tolerance 0.5mm :shock: So you would plasma pierce through, then what drill size? What kind/type? Or burn 4-5mm holes then o...
by miro.kahanek
Sun Apr 26, 2015 2:59 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12139

How to center mark small holes with scribe only?

Hi Les, For some time now we are successfully using "plasma drill" operation to pierce centers of small holes for manual drilling later. I export DXF from SolidWorks, all small holes go to separate layer in Sheetcam, then set hole min-max, plasma drill and tadaa - works perfect! However wh...