Re: [Emc-users] m101 Turret Program

2007-08-21 Thread Chris Morley
Hey Kirk Just cause I'm curious, Why didn't you use classicladder to select tools from your turret? It has timers good to 100ms min. Then you could use the tool pins from emcmot to control the turret -automating tool changes to use regular T and M codes,instead of using M101- or you could use

Re: [Emc-users] m101 Turret Program

2007-08-21 Thread Kirk Wallace
On Tue, 2007-08-21 at 06:17 +, Chris Morley wrote: Hey Kirk Just cause I'm curious, Why didn't you use classicladder to select tools from your turret? It has timers good to 100ms min. Unfortunately, I know next to nothing about Classic Ladder, so I tend to use what I know. I have

Re: [Emc-users] m101 Turret Program

2007-08-21 Thread Jeff Epler
G4 delays in gcode and sleep delays in shell scripts are both non-realtime. The delay you get will always be at least .2 seconds, but may be longer. Jeff - This SF.net email is sponsored by: Splunk Inc. Still grepping

[Emc-users] m101 Turret Program

2007-08-20 Thread Kirk Wallace
I made my first m101 program for my lathe today. I wrote a g-code file to test the turret setup: % m64p1(turn turret rotate solenoid on) g4p.2(wait 200ms) m64p2(turn turret stop solenoid on) g4p.2(wait 200ms for turret to slow to stop) m65p1(turn turret rotate solenoid off)