Hello Guest it is May 04, 2024, 09:08:18 AM

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 - Graham Waterworth

801
Mach Screens / Re: Opening g-code
« on: October 01, 2019, 10:52:17 AM »
That should not be a problem, just add the M1100 to the end of your program and it will work.

How did you want it to work?


802
Mach Screens / Re: Opening g-code
« on: September 30, 2019, 12:21:03 PM »
Try a different DRO, #1200 may be in use by another macro

803
Newfangled Solutions Mach3 Wizards / Re: is nfs turn inmm or in inch?
« on: September 30, 2019, 12:18:29 PM »
I seem to remember its unit neutral so all you do is adjust the figures to metric values

804
Work out which of the microstep drivers are connected to the Y axis and the Z axis, follow the cables back to the control or they may be marked on the box. Swap the drivers in the box over and see if the fault is transferred on to the Z axis.

806
General Mach Discussion / Re: MACH III "Run from Here" not working correctly
« on: September 20, 2019, 08:30:50 PM »
If there is not enough info for mach to start then it will just sit there, E.G. it is in G01 mode with no feed rate

807
Mach Screens / Re: Opening g-code
« on: September 20, 2019, 08:22:55 PM »
Create a button a Label and a DRO on the screen of your choice.

Set the DRO to a user variable e.g. 1200

Set label to "Part Counter" and position close to DRO

Label the button "Reset Counter" and set it to run vb script

Enter VB code :-

SetUserDRO(1200,0)

Save screen.

Then on the end of every g-code file just before the M30 enter

#1200 = [#1200 + 1]

Or you can set up a Macro to do it

M1025.m1s
count = GetUserDRO(1200)
count = count + 1
SetUserDRO(1200, count)


808
Can you post a picture(s) of the machine electronics so we can see what controller and drives you are using.  Use the attachment below the text box to add up to 4 pictures.

809
Do you have a licenced version of Mach3 or are you using one that came with the machine?


810
FAQs / Re: mach 3 toolchange issue
« on: September 19, 2019, 04:24:11 PM »
If you go into the Mach3 folder you should be able to find and XML backup file from before you made the changes, rename the current one in use and copy the backup as the current name.

See if that helps