Need some help. I'm not sure if this is a sheetcam setting or not.
I am using an EzRouter and Sheetcam. The EzRouter is running Mach3 and THC-1000 (IIRC).
I import the .dxf into sheetcam no problem. I do what I need to do in sheetcam and then run the post processor. The problem is that the torch will come down, find the plate, I will hear an audible click, then the torch will raise up, pierce, then cut.
It seems to me that once the plate has been found it shouldn't need to do this on every pierce.
I posted this in the EzRouter forum but I'm thinking its a sheetcam setting.

I did some searching and suspect its in here.


function OnInit()

post.SetCommentChars ("()", "[]") --make sure ( and ) characters do not appear in system text
post.Text (" (Filename: ", fileName, ")\n")
post.Text (" (Post processor: ", postName, ")\n")
post.Text (" (Date: ", date, ")\n")
if(scale == metric) then
post.Text (" G21 (Units: Metric)\n") --metric mode
else
post.Text (" G20 (Units: Inches)\n") --inch mode
end
post.Text (" G53 G90 G40\n F1\n")

dist = 9999999
refdistance = 10* scale
--Put your switch offset value here
switchoffset =.052
lastz = 0
end

What should I change if this is the section?

Thanks for any help.