Hello Guest it is April 26, 2024, 11:37:24 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 - Cbyrdtopper

211
Mach4 General Discussion / Re: Screw Mapping Support
« on: December 11, 2019, 10:52:08 AM »
Mike,
It is supported in industrial, not in hobby.

212
HiCON Motion Controller / Stepper motor won't move correctly.
« on: October 31, 2019, 08:56:00 AM »
This morning, one of our lathes X Axis stopped working correctly.
When jogged or commanded to move, it moves the intended direction for about an inch and then moves in the positive direction and will not stop moving until Mach is disabled or the E Stop is pressed.
My first idea was to check the debug.  It gave me an error every half second or so:  "Reduced timer socket".  I found a solution here on the forum; I increased the polling frequency until it stopped giving me the error (it is set to 250 now). 
Although the warning has stopped posting, the motion still does the same thing. Jog a little and then moves positive indefinitely.
Attached is the debug window from starting mach, jogging, and disabling mach.  That is all I did when I took the screenshot of the debug.
Any ideas on this weird motion?

213
I asked Autodesk to add G30 to the safe retracts last year.  As long as your post isn't older than 10/12/18 then you should have the option to use G30 as well.
That way you can move your table Front and Center once the program is finished.

But, originally, you just wanted the Z to retract only; removing the writeRetract(X, Y); will cause only the Z to retract.

214
You can get to the Post in Fusion. 
Open the Post Process dialog in Manufacture, then click "Open Config" next to the Post you are using.
Also, I think the stock Mach4Mill post has "Use G30" as an option.

215
What do you mean, check every time you post?

216
It's actually very easy to do this.
It is at the very end of the post, if I'm thinking correctly, all you have to do is comment out the line

writeRetract(X, Y);

This should do what you want.

On my Mach4 post that I use, I use G30.  This will move X, Y, and Z to specified machine coordinates specified in the #VARS 5181 -5183.  Very handy if you want the X to move to the center of travel and the Y forward. 
I can share my post tomorrow if you would like.  It is on my work computer and not my laptop here at home.

217
Mach4 General Discussion / Motion pauses on input signals
« on: October 21, 2019, 09:49:34 AM »
It's been awhile since I've been on here.
I'm running into an issue that I haven't come across before.
While my machine is moving whether it is from G Code, MDI, or Button Press (IE GOTO Work Zero) the machine will sometimes pause the motion if I press one of my control panel buttons, Tool Release, Coolant, etc.
I'm not sure if this is a HiCON issue, stepper issue, or Mach issue.

I'm using Nema 23 closed loop steppers, I haven't used steppers in a while, but I've never had this happen with them before.
I've increased the buffer in the HiCON plugin to no avail.
I'm not really sure what's going on.

218
Mach4 General Discussion / Re: Creating M-Code to activate Outputs
« on: August 10, 2019, 01:51:17 PM »
If all you want to do is to turn on and off an output from G Code, you should try using M64 and M65 
Look on page 60 of the Mach4 G Code programming manual for mill and router style machines.   
M64 P2   this will turn on output 2
M65 P2   this will turn off output 2

219
Mach4 General Discussion / Re: Add More Software Input Signals
« on: August 05, 2019, 11:41:36 PM »
I'm pretty sure that Mach4 can only have the allotted number as shown.
Are you really using 65 inputs?  If so, why don't you just add a PLC to your machine and let it handle a lot of your I/O?

220
Nice!  Every so often I have to reset the communication on one of our machines because the PLC will timeout for some reason.  This could make a nice little button on the screen to reset it quickly. 
Let us know if you get something working.