Search found 124 matches

by bLouChip
Fri Apr 26, 2024 2:33 am
Forum: Problems and questions
Topic: plasma turn on coolant
Replies: 7
Views: 105

Re: plasma turn on coolant

I’m not sure what indication the simulator would give. Have you looked at the Gcode file to see if the M8 and M9 statements appear?
by bLouChip
Wed Apr 24, 2024 4:33 pm
Forum: Problems and questions
Topic: Sheet cam GRBL torch probe post processor
Replies: 25
Views: 29741

Re: Sheet cam GRBL torch probe post processor

Try the attached, it produces the following gcode, PH being 3.2mm in the tool, XY being the pierce location.
See the function DoTorchProbeCycle() to make adjustments.

Code: Select all

G0 Z3.2
G38.2 Z-13.0 F1000.0
G92 Z-10.0
G0 Z3.2X113.277Y150.123
by bLouChip
Wed Apr 24, 2024 12:57 pm
Forum: Problems and questions
Topic: plasma turn on coolant
Replies: 7
Views: 105

Re: plasma turn on coolant

you're welcome. please report back how the misting approach goes in terms of the plasma cutting process. I run with a water table. Some use a down draft table. I have not researched this extensively, but what I have read and experienced is that the purpose of the water or down draft is to capture or...
by bLouChip
Tue Apr 23, 2024 2:32 pm
Forum: Problems and questions
Topic: plasma turn on coolant
Replies: 7
Views: 105

Re: plasma turn on coolant

welcome to sheetcam. how do i turn on and off the coolant m08 and m09 with sheetcam whenever the plasma turns on and off at least two independent ways to do this... 1) associate a Path Rule set with your Tools or Operations. This is a multi-step process to setup but you'll find the process handy for...
by bLouChip
Fri Apr 19, 2024 2:24 pm
Forum: Problems and questions
Topic: G-codes
Replies: 3
Views: 107

Re: G-codes

I'm not aware of a "free version" of sheetcam. The real sheetcam product downloaded from sheetcam.com clearly states "this download is limited to approximately 180 lines of generated code. You need to purchase a license to remove this limit. "
by bLouChip
Fri Apr 19, 2024 2:17 pm
Forum: Problems and questions
Topic: starting point issue
Replies: 1
Views: 77

Re: starting point issue

you'll have to be more specific, best if you post your .job file and cite which version of sheetcam you are using.
by bLouChip
Fri Apr 19, 2024 2:15 pm
Forum: Problems and questions
Topic: Building & setting up a rotary tube cutter
Replies: 1
Views: 75

Re: Building & setting up a rotary tube cutter

Welcome to the forum. 1. Will I need a torch height control integrated with this machine? I'm thinking not, but maybe someone will tell me otherwise. If your machine will have a tube support/bearing which slides axial and is integrated with the torch mount or very near it, then likely no THC will be...
by bLouChip
Sat Apr 13, 2024 10:24 pm
Forum: Contributed plugins, tools and posts
Topic: GRBL Plasma w THC, Torch Touchoff, and Rotary
Replies: 36
Views: 126478

Re: GRBL Plasma w THC, Torch Touchoff, and Rotary

update: version 28.2 28.1 added LdcFastProbe var 28.2 added LdcProximityDist feature, supporting vars, and logic. -- proximity distance in mm to skip a Torch Probe Cycle before piercing if current location is within proximity of a recent previous location. A value of 0 turns off the feature. Using t...
by bLouChip
Mon Apr 08, 2024 2:49 pm
Forum: Problems and questions
Topic: Set custom post options
Replies: 3
Views: 135

Re: Set custom post options

Upload your scpost file and I’ll have a look.
by bLouChip
Sun Apr 07, 2024 10:27 pm
Forum: Problems and questions
Topic: Set custom post options
Replies: 3
Views: 135

Re: Set custom post options

WOW! I studied " Mach4 TMC3in1.scpost". That is quite a DefineCustom... all of it - logic! Masterful. Are you trying to add a "Mechanical or Ohmic" boolean choice option to the large list of options in your clone/merger of this scpost ? OR do you just want to use one or a couple ...
by bLouChip
Sun Apr 07, 2024 9:34 pm
Forum: Problems and questions
Topic: Torch Height Problem
Replies: 14
Views: 292

Re: Torch Height Problem

Correction, rather than 'return' from OnPenDown() if inside proximity distance of a previous pierce, you'd still want to perform other key OnPenDown() functions such as firing the torch and pierce delay. Also, the initial value of the ProximityLastX, and Y, should be a large value such as 1e+17, so ...
by bLouChip
Sun Apr 07, 2024 2:35 pm
Forum: Problems and questions
Topic: Torch Height Problem
Replies: 14
Views: 292

Re: Torch Height Problem

Proximity Distance to skip a Torch Probe Cycle before pierce... in OnInit() ... LdcProximityLastX = 0 LdcProximityLastY = 0 LdcProximityDist = 100 -- mm, 0 = always run Torch Probe Cycle in OnPenDown() ... if math.hypot( LdcProximityLastX - currentX, LdcProximityLastY - currentY ) < LdcProximityDist...
by bLouChip
Sun Apr 07, 2024 1:20 am
Forum: Problems and questions
Topic: Torch Height Problem
Replies: 14
Views: 292

Re: Torch Height Problem

@djreiswig- agreed.
by bLouChip
Sat Apr 06, 2024 12:31 pm
Forum: Problems and questions
Topic: Torch Height Problem
Replies: 14
Views: 292

Re: Torch Height Problem

I found "PremierPlasma CNC Floating Head.scpost" in the sheetcam post lib. If this is what you are using, then... It certainly has code to skip torch probe cycles, but its not a proximity of next cut, rather its an accumulated distance of all motion by XY on straight line measurements betw...
by bLouChip
Sat Apr 06, 2024 12:04 pm
Forum: Problems and questions
Topic: Torch Height Problem
Replies: 14
Views: 292

Re: Torch Height Problem

My research on Premier Plasma systems is they use Proma THC SD THCs. Is that what you are using ? If so, then you are correct in understanding the problem, since this THC is operates autonomous to Mach3, and can/will leave the torch height out of position relative to where Mach3 thinks it is, where ...