Hello Guest it is April 19, 2024, 09:02:07 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - smurph

131
Mach4 General Discussion / Re: pmc -parallel line how to do?
« on: June 18, 2021, 02:52:52 AM »
You can place your cursor to the left, right, or underneath most object to insert other objects.  So to do a parallel op, place the cursor under the existing coil and insert another coil. 

Steve

132
Mach4 Plugins / Re: XHC WB04 plugin
« on: June 12, 2021, 06:11:56 PM »
Ah...  Ok, I wasn't really sure what all the Mach3 plugin did.  You are talking a velocity jog, right?  As in not a step per detent thing?  If so, do you jog by moving the hand wheel dial?  Where as long as you are turning the dial one way, the machine will jog in that direction.  Try to be as specific as you can explaining what it does and I will see what I can do. 

Steve

133
Mach4 Plugins / Re: XHC WB04 plugin
« on: June 11, 2021, 02:01:31 PM »
I'm not sure I get what you are referring to.  Full speed control of what?  Feed rate override?  Spindle Override?  That is what that speed controls.  The rate at which feed and spindle override increase/decrease with each button press. 

Steve

134
Mach4 General Discussion / Re: External button "Enable"
« on: June 11, 2021, 01:34:21 PM »
You will not see anything in the Mach diagnostic screen if using the PMC.  There is a test mode in the PMC for diagnostics.  The type of device you use for inputs and outputs doesn't matter.  Pokeys, PLC, MODBUS, etc...  all will work with the PMC.  The test here is if it functionally works and does what you want.  Then having lights lit up in the diagnostic screen of Mach is useless.  However, you could add a rung on your PMC ladder program to raise/lower a Mach signal so that you could see it on the diagnostic screen.  :) 

Steve

135
Yes, if the part being cut has many cuts or obstacles instead of one long single cut.  Basically, the machine SHOULD operate as per the simulation in sheetcam. 

Steve

136
Your conclusions look good with the exception that I think the sheetcam simulation is correct.  That is what is is supposed to do.  However, what sheetcam is writing out for G code is NOT correct, at least for the plasma post.  So I would most definitely take a look at the plasma post processor first.  The task of a post processor is to make G code (for s specific machine) that does EXACTLY what the simulation does. 

Steve

137
How about this one liner?  In the original post code, change:

writeBlock(mFormat.format(power ? 5: 3));

to:

writeBlock(mFormat.format(power ? 62: 63), "P3");

Or I think

writeBlock(mFormat.format(power ? 62: 63)+"P3");

will work too.

Steve

138
Mach4 General Discussion / Re: Mapp input to output?
« on: June 11, 2021, 03:22:09 AM »
Also, the PMC can do stuff like that VERY easily. 

Steve

139
Mach4 General Discussion / Re: VFD wiring with MB3 and ESS
« on: June 11, 2021, 03:21:09 AM »
Ok, you are in luck because the very guy that designs and builds the MB3 also figured out how to make the MB3 (and other breakouts as well that have had issues with that VFD) work with that Haunyang VFD.  https://www.youtube.com/watch?v=jgZ8UbcowLQ

Steve

140
Mach4 General Discussion / Re: External button "Enable"
« on: June 11, 2021, 03:15:16 AM »
The PMC doesn't require the I/O to Signal mapping.  But it can, in effect, map an I/O to a Signal.  You can make a ladder "rung" that will effectively "map" a discrete device input to a Mach input signal.  Or map a Mach output Signal to a discrete device output.  The PMC is VERY flexible. 

For inputs, yes, the PMC can use a device input and that very same input can be mapped to a Mach signal and used in the LUA PLC or SIGLIB scripts.  Not sure why that would be needed, but it would be possible.  You can also do the same with outputs, as long as the LUA scripts and PMC don't care which one set the output at any give time.  In other words, if you don't care about a "split brain" type of situation. 

Yes, the PMC is running instantly.

Steve