开云体育

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: offsets

Spencer Chase
 

开云体育

i am not quite understanding how the non 0 values get in to the G54 table. i start the machine and jog to the position that i want to be 0,0,0 and then zero each axis. if i look at the tables at this point there are seemingly arbitrary values in the G54 entry but i know they are not arbitrary and that they are used in the system.

if i change all G52s in my gcode to G10 it makes sense that i can then edit the G54 values to add additional offsets but i still am not clear on the advantage of doing this. will i then be able to set the G54 to 0,0,0 plus any additional offsets i want to add besides the G10 ones that are in the gcode?

i will give this a try but it would be helpful to know if this is really what i should do. i don't want to edit the gcode when i need to make a minor offset change. i want to be able to do it from the MDI or from a custom button that i write a script for so i need to make the additional offset persistent independent of what is in the gcode.

On 2/25/2015 11:41 PM, 'Henrik Olsson' henrik@... [mach1mach2cnc] wrote:
?
Spencer,
The values you see in the offset table is the distance from the local (G54) zero position to the machine zero position. When you reference/home the machine the master coordinate system is reset to 0. If the value in the offset table is 0 then the G54 coordinate system is?"right on top" of the machine coordinate system.

If you move the machine to an arbitrary position and press the Zero X button then the distance from the machine to zero to this "new/local" zero position is recorded in the offset table for the currently selected coordinate system (G54, G55 etc.

You can set offsets with the G10 command. I'd probably use that instead of G52 in your current setup and THEN use G52 to shift the thing further if that's really needed. Sounds like there's quite a risk of "getting lost".

/Henrik.

26 februari 2015, Spencer Chase lists@... [mach1mach2cnc] skrev:

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.

i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


Re: offsets

Spencer Chase
 

开云体育

likewise, i was very confused by offsets which is why i asked. i really like the programatic approach but it will require writing the scripts and changing every G0 and G1 line from my gcode. unless there is a really simple other solution (still need to check out the G10 approach) i will probably try this when i want a programming challenge.

On 2/26/2015 7:20 AM, testfly@... [mach1mach2cnc] wrote:
?

Oh man my head hurts.

I wish I could grasp this.

Are there any videos on the subject?

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Thursday, February 26, 2015 9:48 AM
To: mach1mach2cnc@...
Subject: RE: [mach1mach2cnc] offsets

?

?

Good morning Spencer,

?

Firstly, I am not a machinist by trade and have never used offsets. ?CNC is just a hobby for me so the approach I will suggest comes from a programmer’s view.? It has been a while since I have done this but these work.

?

If my part script knows where it is supposed to be relative to the current offset then my code for look like this:

?

xOff=getOEMdro(800)

yOff=getOEMdro(801)

?

code("G01 x["+Str(xOff)+"+1] y["+Str(yOff)+"+1]")

?

?

If the script calling my part script knows where my part should go then it would :

?

setVar(800,5.25)

setVar(801,-2)

?

In my part script:

?

xOff =getVar(800)

yOff =getVar(801)

sSpeed=250

FR=50

code("G01 F50 x["+Str(xOff)+"+0] Y["+Str(yOff)+"+0]")

?

Hope this helps

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Wednesday, February 25, 2015 11:05 PM
To: mach1mach2cnc@...
Subject: [mach1mach2cnc] offsets

?

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.

i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


Re: offsets

Spencer Chase
 

开云体育

if i were using a script for the code, that makes sense but currently i am using just plain gcode. since i am a programmer (mainly perl and c) i do like the idea of doing it this way but i am not good with vbscript and will probably save this for another time. i could make a custom button that incremented the variables and moved the machine to verify that the offset was changed.

once i use the machine for the first 1000 parts and see how often i really need to change the Y offset, i'll think about taking on this project.

On 2/26/2015 6:48 AM, 'Ralph Tuttle' ralph.tuttle@... [mach1mach2cnc] wrote:
?

Good morning Spencer,

?

Firstly, I am not a machinist by trade and have never used offsets. ?CNC is just a hobby for me so the approach I will suggest comes from a programmer’s view.? It has been a while since I have done this but these work.

?

If my part script knows where it is supposed to be relative to the current offset then my code for look like this:

?

xOff=getOEMdro(800)

yOff=getOEMdro(801)

?

code("G01 x["+Str(xOff)+"+1] y["+Str(yOff)+"+1]")

?

?

If the script calling my part script knows where my part should go then it would :

?

setVar(800,5.25)

setVar(801,-2)

?

In my part script:

?

xOff =getVar(800)

yOff =getVar(801)

sSpeed=250

FR=50

code("G01 F50 x["+Str(xOff)+"+0] Y["+Str(yOff)+"+0]")

?

Hope this helps

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Wednesday, February 25, 2015 11:05 PM
To: mach1mach2cnc@...
Subject: [mach1mach2cnc] offsets

?

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.

i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


-- 

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


Re: Dolphin Partsmaster Question?

 

开云体育

I use Dolphin all the time, import DXF files all the time, and have never had a problem with the process.? I routinely use Autocad or DraftSite as the drawing package, then import the DXF into Dolphin, if you would like you can send me the

File and I will attempt to do it on my system and report the results.? I would suspect the problem is perhaps Inkscape is not producing a usable DXF file.?

Jonathan

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Wednesday, February 25, 2015 11:38 AM
To: mach1mach2cnc@...
Subject: [mach1mach2cnc] Dolphin Partsmaster Question?

?

?

Has anyone used Dolphin Partmaster CAD/CAM I am trying to Export a DXF file from Inkscape and import it into Dolphin Partmaster does anyone know how to do this?....when I do it the result is a bunch of random shades and lines?

?

Thanks

Jerry.

?


Re: offsets

 

There's a video on Homing,Limits and Offsets on the Machsupport site.




From: "testfly@... [mach1mach2cnc]"
To: mach1mach2cnc@...
Sent: Thursday, February 26, 2015 10:20:24 AM
Subject: RE: [mach1mach2cnc] offsets



Oh man my head hurts.

I wish I could grasp this.

Are there any videos on the subject?

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Thursday, February 26, 2015 9:48 AM
To: mach1mach2cnc@...
Subject: RE: [mach1mach2cnc] offsets

?

?

Good morning Spencer,

?

Firstly, I am not a machinist by trade and have never used offsets. ?CNC is just a hobby for me so the approach I will suggest comes from a programmer’s view.? It has been a while since I have done this but these work.

?

If my part script knows where it is supposed to be relative to the current offset then my code for look like this:

?

xOff=getOEMdro(800)

yOff=getOEMdro(801)

?

code("G01 x["+Str(xOff)+"+1] y["+Str(yOff)+"+1]")

?

?

If the script calling my part script knows where my part should go then it would :

?

setVar(800,5.25)

setVar(801,-2)

?

In my part script:

?

xOff =getVar(800)

yOff =getVar(801)

sSpeed=250

FR=50

code("G01 F50 x["+Str(xOff)+"+0] Y["+Str(yOff)+"+0]")

?

Hope this helps

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Wednesday, February 25, 2015 11:05 PM
To: mach1mach2cnc@...
Subject: [mach1mach2cnc] offsets

?

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.


i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.


i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.


i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.


there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?


--


Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309






Re: offsets

 

开云体育

Oh man my head hurts.

I wish I could grasp this.

Are there any videos on the subject?

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Thursday, February 26, 2015 9:48 AM
To: mach1mach2cnc@...
Subject: RE: [mach1mach2cnc] offsets

?

?

Good morning Spencer,

?

Firstly, I am not a machinist by trade and have never used offsets. ?CNC is just a hobby for me so the approach I will suggest comes from a programmer’s view.? It has been a while since I have done this but these work.

?

If my part script knows where it is supposed to be relative to the current offset then my code for look like this:

?

xOff=getOEMdro(800)

yOff=getOEMdro(801)

?

code("G01 x["+Str(xOff)+"+1] y["+Str(yOff)+"+1]")

?

?

If the script calling my part script knows where my part should go then it would :

?

setVar(800,5.25)

setVar(801,-2)

?

In my part script:

?

xOff =getVar(800)

yOff =getVar(801)

sSpeed=250

FR=50

code("G01 F50 x["+Str(xOff)+"+0] Y["+Str(yOff)+"+0]")

?

Hope this helps

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Wednesday, February 25, 2015 11:05 PM
To: mach1mach2cnc@...
Subject: [mach1mach2cnc] offsets

?

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.

i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


Re: offsets

Ralph Tuttle
 

开云体育

Good morning Spencer,

?

Firstly, I am not a machinist by trade and have never used offsets. ?CNC is just a hobby for me so the approach I will suggest comes from a programmer’s view.? It has been a while since I have done this but these work.

?

If my part script knows where it is supposed to be relative to the current offset then my code for look like this:

?

xOff=getOEMdro(800)

yOff=getOEMdro(801)

?

code("G01 x["+Str(xOff)+"+1] y["+Str(yOff)+"+1]")

?

?

If the script calling my part script knows where my part should go then it would :

?

setVar(800,5.25)

setVar(801,-2)

?

In my part script:

?

xOff =getVar(800)

yOff =getVar(801)

sSpeed=250

FR=50

code("G01 F50 x["+Str(xOff)+"+0] Y["+Str(yOff)+"+0]")

?

Hope this helps

?

?

From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Wednesday, February 25, 2015 11:05 PM
To: mach1mach2cnc@...
Subject: [mach1mach2cnc] offsets

?

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.

i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


Re: Mach4 - Axis Correction

 

while your at it brian. did the g41/42 revision ever get put into the newer releases of mach4?
last time i checked it was giving me the same gouges on screen.


Re: Mach4 - Axis Correction

 

开云体育

I don't know if this has come back to the surface or not. I know it was started. Let me talk to Steve and see where he ended on that one and I will post back here.

Thanks
Brian

On 2/26/2015 2:20 AM, Daniel yosefi83@... [mach1mach2cnc] wrote:

Hi Brian,

Just wanted to get an update on this please.

Thanks,
Dan

On 12/11/14 7:35 AM, Daniel yosefi83@... [mach1mach2cnc] wrote:
Guess I will wait till it's finished ;-) The SS plugin is not ready anyway...

Dan

On 11/11/14 10:57 PM, Brian Barker brianb@... [mach1mach2cnc] wrote:
If you are willing to try to input data with the scripting commands you are welcome to test it... I have not had the time to make a dialog.

Thanks
Brian

On 11/11/2014 3:50 PM, Daniel yosefi83@... [mach1mach2cnc] wrote:
Hi Brian,

That sounds great! Hope it works well. Would test it myself if the Smoothstepper plugin ever gets released.

Thanks,
Dan

On 11/11/14 10:38 PM, Brian Barker brianb@... [mach1mach2cnc] wrote:
Hello Dan,
This has been added but needs to be tested :( I have a few users that are playing with this now so we hope to have it tested out soon...

Thanks
Brian

On 11/11/2014 3:28 PM, Daniel yosefi83@... [mach1mach2cnc] wrote:
Hi Brian,

I built a 4.5m cylindrical grinder. The Z axis is calibrated for linearity to better than 0.03mm over the whole 4.5m meter travel. But I want it even more accurate. Better than that is really hard to accomplish mechanically, so I wonder if it can be done in Mach4 (as far as I know it can't be done in Mach3). I can precisely map the axis so that I have say 1000 points along the Z and a corresponding correction in the X axis to compensate for the non-linearity. Can Mach4 apply a correction in X axis for every point in Z?

Thanks,
Dan







Re: offsets

 

Spencer,
The values you see in the offset table is the distance from the local (G54) zero position to the machine zero position. When you reference/home the machine the master coordinate system is reset to 0. If the value in the offset table is 0 then the G54 coordinate system is?"right on top" of the machine coordinate system.

If you move the machine to an arbitrary position and press the Zero X button then the distance from the machine to zero to this "new/local" zero position is recorded in the offset table for the currently selected coordinate system (G54, G55 etc.

You can set offsets with the G10 command. I'd probably use that instead of G52 in your current setup and THEN use G52 to shift the thing further if that's really needed. Sounds like there's quite a risk of "getting lost".

/Henrik.

26 februari 2015, Spencer Chase lists@... [mach1mach2cnc] skrev:

?

i have read everything i can find about offsets and still can not figure
out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i
need in my parts. i have them all centered around 0,0,0 and am using G52
offsets in the code to put them in the right place. this all works and i
can adjust the relative position of them by changing the G52 before each
snippet.

i also want to be able to apply an offset for each part if needed. i can
go to the offset tab and add or subtract from the G54 (default) offset.
it always seems to have some values in it but i have no idea where these
come from. if i want to add an additional y offset i can edit the y
value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis
or two or three with out having to remember the values in the G54 in the
table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global
offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...
http://www.spencerserolls.com
(425) 791-0309


Re: Mach4 - Axis Correction

 

开云体育

Hi Brian,

Just wanted to get an update on this please.

Thanks,
Dan

On 12/11/14 7:35 AM, Daniel yosefi83@... [mach1mach2cnc] wrote:

Guess I will wait till it's finished ;-) The SS plugin is not ready anyway...

Dan

On 11/11/14 10:57 PM, Brian Barker brianb@... [mach1mach2cnc] wrote:
If you are willing to try to input data with the scripting commands you are welcome to test it... I have not had the time to make a dialog.

Thanks
Brian

On 11/11/2014 3:50 PM, Daniel yosefi83@... [mach1mach2cnc] wrote:
Hi Brian,

That sounds great! Hope it works well. Would test it myself if the Smoothstepper plugin ever gets released.

Thanks,
Dan

On 11/11/14 10:38 PM, Brian Barker brianb@... [mach1mach2cnc] wrote:
Hello Dan,
This has been added but needs to be tested :( I have a few users that are playing with this now so we hope to have it tested out soon...

Thanks
Brian

On 11/11/2014 3:28 PM, Daniel yosefi83@... [mach1mach2cnc] wrote:
Hi Brian,

I built a 4.5m cylindrical grinder. The Z axis is calibrated for linearity to better than 0.03mm over the whole 4.5m meter travel. But I want it even more accurate. Better than that is really hard to accomplish mechanically, so I wonder if it can be done in Mach4 (as far as I know it can't be done in Mach3). I can precisely map the axis so that I have say 1000 points along the Z and a corresponding correction in the X axis to compensate for the non-linearity. Can Mach4 apply a correction in X axis for every point in Z?

Thanks,
Dan






offsets

Spencer Chase
 

i have read everything i can find about offsets and still can not figure out exactly how to do what i want with minimal effor tand confusion.

i have a bunch of little gcode snippets that do the various features i need in my parts. i have them all centered around 0,0,0 and am using G52 offsets in the code to put them in the right place. this all works and i can adjust the relative position of them by changing the G52 before each snippet.

i also want to be able to apply an offset for each part if needed. i can go to the offset tab and add or subtract from the G54 (default) offset. it always seems to have some values in it but i have no idea where these come from. if i want to add an additional y offset i can edit the y value and it all works correctly but i am not sure what i am doing.

i need to know the easiest way to apply an additional offset for an axis or two or three with out having to remember the values in the G54 in the table, add or subtract from it and enter a new value.

there must be an easy way to just add or subtract an additional global offset without editing the gcode. how might this be done?

--

Best regards, Spencer Chase
67550-Bell Springs Rd.
Garberville, CA 95542 Postal service only.
Laytonville, CA 95454 UPS only.
Spencer@...

(425) 791-0309


Dolphin Partsmaster Question?

 

Has anyone used Dolphin Partmaster CAD/CAM I am trying to Export a DXF file from Inkscape and import it into Dolphin Partmaster does anyone know how to do this?....when I do it the result is a bunch of random shades and lines?


Thanks

Jerry.



Upgrading a Lathe with M4

 

Hi People,

Currently have a Wabeco lathe currently equipped with NCCAD software and the Wabeco “in house“ hardware for X, Z, the tool changer and infinitely variable speed control 0 ~ 6000 rpm.
I understand that a lot of these machines have been converted in the US and other places to use a G540 Geckodrive and Mach software.

Would like to do the same, I have been at this bag of bones for nearly a year on and off and still have not got on top of it. Keep remembering the set of the mill. Took a week to convert it and two days to master the concepts and Mach 3.
Any hints at all on what to do and or how to do it would be most gratefully received. I have the G540 (2 weeks old) and a lot of other fruit to add but am still looking for tips please.

All and every hint most welcome.

Russell Dunn
Ferlach
Austria


Oblong Holes

REX SMITH
 

I’m machining a plug panel that has assorted hole sizes for mounting plugs. Each of the holes that gets machined is eccentric (oblong). I thought at first that it was due to a backlash issue, but doesn’t seem to be the case. The holes are eccentric diagonally. If backlash, it seems they would be eccentric only in the x or y direction. This would indicate something in the software. Anyone seen this?
I’m running Mach 3/PMDX/Gecko/RF 45 rex


Tuning Gecko 320 with scope.Video Included

 

Hi

I have my scope connected to the G320. I cannot seem to smooth out the right side

of the waveform. Adjusting the gain or damping does not provide any effect.

Hoping for some help to analyze the waveform.




Re: Mach4 plugin

Ralph Tuttle
 

Squeaky wheel goes round and round, round and round…just sayin…sometimes making a little noise is a good thing. Like making swarf.



From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Monday, February 23, 2015 3:59 PM
To: mach1mach2cnc@...
Subject: Re: [mach1mach2cnc] Mach4 plugin





Contacted Balazs and and we should be all set. I have offered to work with him, he had no idea the state of Mach4 and the willingness of the people here to work with him.
They are good guys and I knew something was up :).... Miscommunication can be a very bad thing!

Thanks
Brian



On 2/23/2015 4:16 PM, CNCWoodworker@... [mach1mach2cnc] wrote:

Type your reply in Hungarian and see how well you do. English is not their first language.






_____


From: "'chuck' chuckels@... [mach1mach2cnc]" <mailto:mach1mach2cnc@...> <mach1mach2cnc@...>
To: mach1mach2cnc@...
Sent: Monday, February 23, 2015 4:13:14 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin



boy, I sure hope their software is better than their grammar and
spelling.......



----- Original Message -----
From: "Brian Barker brianb@... [mach1mach2cnc]"
<mailto:mach1mach2cnc@...> <mach1mach2cnc@...>
To: <mailto:mach1mach2cnc@...> <mach1mach2cnc@...>
Sent: Monday, February 23, 2015 2:09 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin




They sure seem negative! The Pokeys is a very good option over the UC100
and there are other that will be coming along. As for the API interface
it has not been changing much at all at this time. The changes that have
happened have been for things like rigid tapping features like Laser and
so on. So at the end of the day they are welcome to do what they like
but it sure would be nice if they truly knew what we where working
before they spout off.

Thanks
Brian

On 2/23/2015 1:19 PM, 'Ralph Tuttle' ralph.tuttle@...
[mach1mach2cnc] wrote:


Thought I would pass this along for those who are trying to make
future decisions with regards to mach4 compatibility. I inquired
whether they had a Mach4 plugin for their UC100 and if not when they
might develop one. Here is their response:

Thank you for your e-mail and for your interest in our products.

I'm afraid we will not write a Mach4 plugin any soon and we have the
following reasons:

1.) Mach4 is still in too active development which means the SDK
interface is changing a lot as the developers fixing bugs and changing
things, this means that we should always follow these changes closely
and that the changes could break the plugin. We are not really
interested to go into a jog like this now which could take forever and
would give us an infinate job. We will write a plugin only if and when
Mach4 will become stable enough and when the development will be not
this active anymore.

2.) We already have our own software called the UCCNC. The software
can already do most of the things mach3 and mach4 can do and we
already working on advanced things which mach3 and also mach4 can't do,
so probably at the time when mach4 will become stabile enough we will
probably will be ahead of mach4 with our own software development, so
there will be then no real point for us to write a plugin for Mach4
... but ofcourse this is just an idea, time will decide. :)









------------------------------------
Posted by: "chuck" <mailto:chuckels@...> <chuckels@...>
------------------------------------



www.machsupport.com - Web site Access
------------------------------------



Yahoo Groups Links

























[Non-text portions of this message have been removed]


Re: Mach4 plugin

 

I believe that they're Eastern European. Hungary or Romania maybe.

Terry Wellman

On Mon, Feb 23, 2015 at 3:13 PM, 'chuck' chuckels@... [mach1mach2cnc] <mach1mach2cnc@...> wrote:
?

boy, I sure hope their software is better than their grammar and
spelling.......

----- Original Message -----
From: "Brian Barker brianb@... [mach1mach2cnc]"
<mach1mach2cnc@...>
To: <mach1mach2cnc@...>
Sent: Monday, February 23, 2015 2:09 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin

> They sure seem negative! The Pokeys is a very good option over the UC100
> and there are other that will be coming along. As for the API interface
> it has not been changing much at all at this time. The changes that have
> happened have been for things like rigid tapping features like Laser and
> so on. So at the end of the day they are welcome to do what they like
> but it sure would be nice if they truly knew what we where working
> before they spout off.
>
> Thanks
> Brian
>
> On 2/23/2015 1:19 PM, 'Ralph Tuttle' ralph.tuttle@...
> [mach1mach2cnc] wrote:
>>
>>
>> Thought I would pass this along for those who are trying to make
>> future decisions with regards to mach4 compatibility. I inquired
>> whether they had a Mach4 plugin for their UC100 and if not when they
>> might develop one. Here is their response:
>>
>> Thank you for your e-mail and for your interest in our products.
>>
>> I'm afraid we will not write a Mach4 plugin any soon and we have the
>> following reasons:
>>
>> 1.) Mach4 is still in too active development which means the SDK
>> interface is changing a lot as the developers fixing bugs and changing
>> things, this means that we should always follow these changes closely
>> and that the changes could break the plugin. We are not really
>> interested to go into a jog like this now which could take forever and
>> would give us an infinate job. We will write a plugin only if and when
>> Mach4 will become stable enough and when the development will be not
>> this active anymore.
>>
>> 2.) We already have our own software called the UCCNC. The software
>> can already do most of the things mach3 and mach4 can do and we
>> already working on advanced things which mach3 and also mach4 can't do,
>> so probably at the time when mach4 will become stabile enough we will
>> probably will be ahead of mach4 with our own software development, so
>> there will be then no real point for us to write a plugin for Mach4
>> ... but ofcourse this is just an idea, time will decide. :)
>>
>>
>>
>>
>
>



Re: Mach4 plugin

 

开云体育

Contacted Balazs and and we should be all set.? I have offered to work with him, he had no idea the state of Mach4 and the willingness of the people here to work with him.
They are good guys and I knew something was up :).... Miscommunication can be a very bad thing!

Thanks
Brian


On 2/23/2015 4:16 PM, CNCWoodworker@... [mach1mach2cnc] wrote:

Type your reply in Hungarian and see how well you do. English is not their first language.



From: "'chuck' chuckels@... [mach1mach2cnc]"
To: mach1mach2cnc@...
Sent: Monday, February 23, 2015 4:13:14 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin

boy, I sure hope their software is better than their grammar and
spelling.......

----- Original Message -----
From: "Brian Barker brianb@... [mach1mach2cnc]"

To:
Sent: Monday, February 23, 2015 2:09 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin


> They sure seem negative! The Pokeys is a very good option over the UC100
> and there are other that will be coming along. As for the API interface
> it has not been changing much at all at this time. The changes that have
> happened have been for things like rigid tapping features like Laser and
> so on. So at the end of the day they are welcome to do what they like
> but it sure would be nice if they truly knew what we where working
> before they spout off.
>
> Thanks
> Brian
>
> On 2/23/2015 1:19 PM, 'Ralph Tuttle' ralph.tuttle@...
> [mach1mach2cnc] wrote:
>>
>>
>> Thought I would pass this along for those who are trying to make
>> future decisions with regards to mach4 compatibility. ?I inquired
>> whether they had a Mach4 plugin for their UC100 and if not when they
>> might develop one. ?Here is their response:
>>
>> Thank you for your e-mail and for your interest in our products.
>>
>> I'm afraid we will not write a Mach4 plugin any soon and we have the
>> following reasons:
>>
>> 1.) Mach4 is still in too active development which means the SDK
>> interface is changing a lot as the developers fixing bugs and changing
>> things, this means that we should always follow these changes closely
>> and that the changes could break the plugin. We are not really
>> interested to go into a jog like this now which could take forever and
>> would give us an infinate job. We will write a plugin only if and when
>> Mach4 will become stable enough and when the development will be not
>> this active anymore.
>>
>> 2.) We already have our own software called the UCCNC. The software
>> can already do most of the things mach3 and mach4 can do and we
>> already working on advanced things which mach3 and also mach4 can't do,
>> so probably at the time when mach4 will become stabile enough we will
>> probably will be ahead of mach4 with our own software development, so
>> there will be then no real point for us to write a plugin for Mach4
>> ... but ofcourse this is just an idea, time will decide. :)
>>
>>
>>
>>
>
>



------------------------------------
Posted by: "chuck"
------------------------------------

- Web site Access
------------------------------------

Yahoo Groups Links

<*> To visit your group on the web, go to:
?? ?

<*> Your email settings:
?? ?Individual Email | Traditional

<*> To change settings online go to:
?? ?
?? ?(Yahoo! ID required)

<*> To change settings via email:
?? ?mach1mach2cnc-digest@...
?? ?mach1mach2cnc-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
?? ?mach1mach2cnc-unsubscribe@...

<*> Your use of Yahoo Groups is subject to:
?? ?




Re: Mach4 plugin

 

Type your reply in Hungarian and see how well you do. English is not their first language.



From: "'chuck' chuckels@... [mach1mach2cnc]"
To: mach1mach2cnc@...
Sent: Monday, February 23, 2015 4:13:14 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin

boy, I sure hope their software is better than their grammar and
spelling.......

----- Original Message -----
From: "Brian Barker brianb@... [mach1mach2cnc]"

To:
Sent: Monday, February 23, 2015 2:09 PM
Subject: Re: [mach1mach2cnc] Mach4 plugin


> They sure seem negative! The Pokeys is a very good option over the UC100
> and there are other that will be coming along. As for the API interface
> it has not been changing much at all at this time. The changes that have
> happened have been for things like rigid tapping features like Laser and
> so on. So at the end of the day they are welcome to do what they like
> but it sure would be nice if they truly knew what we where working
> before they spout off.
>
> Thanks
> Brian
>
> On 2/23/2015 1:19 PM, 'Ralph Tuttle' ralph.tuttle@...
> [mach1mach2cnc] wrote:
>>
>>
>> Thought I would pass this along for those who are trying to make
>> future decisions with regards to mach4 compatibility. ?I inquired
>> whether they had a Mach4 plugin for their UC100 and if not when they
>> might develop one. ?Here is their response:
>>
>> Thank you for your e-mail and for your interest in our products.
>>
>> I'm afraid we will not write a Mach4 plugin any soon and we have the
>> following reasons:
>>
>> 1.) Mach4 is still in too active development which means the SDK
>> interface is changing a lot as the developers fixing bugs and changing
>> things, this means that we should always follow these changes closely
>> and that the changes could break the plugin. We are not really
>> interested to go into a jog like this now which could take forever and
>> would give us an infinate job. We will write a plugin only if and when
>> Mach4 will become stable enough and when the development will be not
>> this active anymore.
>>
>> 2.) We already have our own software called the UCCNC. The software
>> can already do most of the things mach3 and mach4 can do and we
>> already working on advanced things which mach3 and also mach4 can't do,
>> so probably at the time when mach4 will become stabile enough we will
>> probably will be ahead of mach4 with our own software development, so
>> there will be then no real point for us to write a plugin for Mach4
>> ... but ofcourse this is just an idea, time will decide. :)
>>
>>
>>
>>
>
>



------------------------------------
Posted by: "chuck"
------------------------------------

www.machsupport.com - Web site Access
------------------------------------

Yahoo Groups Links

<*> To visit your group on the web, go to:
?? ?http://groups.yahoo.com/group/mach1mach2cnc/

<*> Your email settings:
?? ?Individual Email | Traditional

<*> To change settings online go to:
?? ?http://groups.yahoo.com/group/mach1mach2cnc/join
?? ?(Yahoo! ID required)

<*> To change settings via email:
?? ?mach1mach2cnc-digest@...
?? ?mach1mach2cnc-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
?? ?mach1mach2cnc-unsubscribe@...

<*> Your use of Yahoo Groups is subject to:
?? ?https://info.yahoo.com/legal/us/yahoo/utos/terms/