Search found 95 matches

by Vmax549
Tue Apr 28, 2015 3:08 pm
Forum: Yahoo posts
Topic: Registration acceptance still pending
Replies: 5
Views: 8355

IF you can post then you are IN.

(;-) TP
by Vmax549
Tue Apr 28, 2015 2:59 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12072

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 to...
by Vmax549
Sun Apr 26, 2015 9:47 pm
Forum: Problems and questions
Topic: How to center mark small holes with scribe only?
Replies: 15
Views: 12072

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 cal...
by Vmax549
Sat Apr 11, 2015 2:57 am
Forum: Yahoo posts
Topic: New feature suggestion
Replies: 8
Views: 8281

Here is a test post for those that want to play with Air and Plasma Duty cycles. You set the Duty cycle values in the post under OnInitiate() It tracks time based on Move Length /feedrate it updates both Duty cycles. It adds time for cutting and subtracts time for rapids. When it reaches a trip poin...
by Vmax549
Tue Apr 07, 2015 10:01 pm
Forum: Yahoo posts
Topic: New feature suggestion
Replies: 8
Views: 8281

Both of those functions could easily be tracked in Scam. Duty cycle is always calculated after the unit reaches max thermal load. Most duty cycles are based on the 10 minute cycle . In a scam post just track cut time as additive and rapids time as subtractive. When the combination of the 2 reaches t...
by Vmax549
Sun Apr 05, 2015 8:46 pm
Forum: Yahoo posts
Topic: New feature suggestion
Replies: 8
Views: 8281

HEY KEITH What am I chopped liver ???? :lol:

(;-) TP
by Vmax549
Sat Apr 04, 2015 6:59 pm
Forum: Yahoo posts
Topic: New feature suggestion
Replies: 8
Views: 8281

HIYA Keith, what post are you using AND what it the duty cycle of your machine ?

I think I have something that may work. I do something similar with the Part Cost plugin. ( track time)

(;-) TP
by Vmax549
Fri Mar 06, 2015 10:06 pm
Forum: Problems and questions
Topic: blow holes in plasma cutting
Replies: 26
Views: 10094

Yes that is correct. Relay fitted AND acitvateSignal.

(;-) TP
by Vmax549
Tue Mar 03, 2015 4:13 am
Forum: Problems and questions
Topic: blow holes in plasma cutting
Replies: 26
Views: 10094

OK I had to stop back by the shop to check on that. The way I do it is put a switch across the ARC OK input signal going into Mach3. That way it sees that it is ready to go as soon as the M3 signal is given. It will strike the arc at the same time start moving. Kinda like a gouge start. But it makes...
by Vmax549
Sun Mar 01, 2015 2:30 am
Forum: Problems and questions
Topic: blow holes in plasma cutting
Replies: 26
Views: 10094

The problem is the M3 has a slight delay to it as it uses DospinCW() to start the spindle. There IS an alternative. You change teh M3 code to do a direct ouputstart ActivateSignal(output1) IF your M3 is tied to output1 , look in the spindle section for the output# that is used with M3. I would also ...
by Vmax549
Sun Feb 01, 2015 4:15 am
Forum: Problems and questions
Topic: Post editor error checking
Replies: 1
Views: 922

Post editor error checking

Has something changed with the POST EDITOR error checking??

USED to if you made a mistake and ran teh post it woul dtell you what line the error was on and ASKYOU if you wanted to correct it and take you back to the editor.

NOW it just tells you it cannot find the POST.

(;-) TP
by Vmax549
Sat Jan 17, 2015 7:00 pm
Forum: Problems and questions
Topic: z axis reference slow down
Replies: 9
Views: 3988

I see where it puts in the Pierce height. It is at the end of the Rapid move ???. I corrected what I thought would do it BUT it is doubling some of the posted Gcode when it should NOT. It is making some loops back through through the code that I do not understand or follow (;-) We will have to ask L...
by Vmax549
Sat Jan 17, 2015 4:48 pm
Forum: Problems and questions
Topic: z axis reference slow down
Replies: 9
Views: 3988

That Zpierce move is done by another component of Scam post.

My mod had nothing to do with it. There is a great deal about that post that should be corrected.

Just a thought, (;-) TP
by Vmax549
Fri Jan 16, 2015 11:04 pm
Forum: Problems and questions
Topic: Post question
Replies: 5
Views: 1608

I would be interested in that as well.

(;-) TP
by Vmax549
Fri Jan 16, 2015 9:09 pm
Forum: Problems and questions
Topic: z axis reference slow down
Replies: 9
Views: 3988

all yoou should have to do is add in a piece of code to Rapid to Z0.250 before the REFHOME call. Here is a sample of the old code and new code to replace it with. SHould WORK (;-) function Reference() firstRef = false if (refHome) then post.ModalText(" G28.1 Z") post.Number(3 * scale, &quo...