On Mon, Jan 31, 2011 at 10:31:17AM -0500, gene heskett wrote:
>
> But code snippets like this usually never get to my emc box. Yes, its an
> smbmount on this box, but despite my being the user gene on both boxes,
> because *buntu's start user numbers at 1000 whereas the rest of the
> universe
On Monday, January 31, 2011 10:21:38 am Robert von Knobloch did opine:
> In case this is useful, I made the following routine.
> You can paste the output of a cam processor where shown, so that it
> becomes a subroutine, then add parameters for final cut depth,
> incremental cut depth etc.
>
> ==
In case this is useful, I made the following routine.
You can paste the output of a cam processor where shown, so that it
becomes a subroutine, then add parameters for final cut depth,
incremental cut depth etc.
==
- Original Message -
From: "Chris Reynolds"
To:
Sent: Sunday, January 30, 2011 8:54 AM
Subject: [Emc-users] repeating code
>I have a number of projects where I have to thin down material for each
>part. I
> generally create a single path and then just change the depth as needed.
> H
Thanks everyone for the suggestions and help. I really appreciate it.
Chris
http://www.blowyourbrassoff.com
http://www.builderofstuff.com
Just a man, his shop, and a long list of unfinished projects...
--
Special Of
Another alternative is owords
Check out http://wiki.linuxcnc.org/cgi-bin/emcinfo.pl?Oword
On Sun, Jan 30, 2011 at 9:21 AM, andy pugh wrote:
> > Is there a way to alter this program so that I can put a target depth and
> just
> > have it repeat at .020" intervals until it reaches the target dept
> Is there a way to alter this program so that I can put a target depth and just
> have it repeat at .020" intervals until it reaches the target depth?
http://linuxcnc.org/docs/html/gcode_main.html#cha:O-Codes
# = 0
# = 0.02
# = -0.5
#1 = #
O100 WHILE [#1 GT [# + #]]
#1 = [#1 - #]
G1 X0. Y
Chris,
you can create a python file that just asks you for the required info.
Look at facing.py for such a sample.
Ries
On Jan 30, 2011, at 8:54 AM, Chris Reynolds wrote:
> I have a number of projects where I have to thin down material for
> each part. I
> generally create a single path and