Re: [Emc-users] Random Direction Changes

2010-03-30 Thread Slavko Kocjancic
darcys...@gmail.com pravi: Hi all, I am experiencing some odd direction changes on a home-brew CNC machine that I have on loan. The machine was apparently purchased off ebay, and all the settings I dug out from data sheets for the driver chips and motors. X and Y are working well, but

Re: [Emc-users] How to make round bores

2010-03-30 Thread Andy Pugh
On 30 March 2010 03:22, Chris Radek ch...@timeguy.com wrote: Old end mills make great boring bars.  Just grind off whatever is in the way... They work on lathes too. (And taps can be used as thread-chasers) -- atp

Re: [Emc-users] Random Direction Changes

2010-03-30 Thread John Harris
Hi, Under some circumstances this effect can be produced by one motor winding connection not being good at the driver end of the motor cable. Usually with a long (2 mtr) cable. Can also be due to one output of the driver unit being bad. With power off, use an ohmmeter to check the

Re: [Emc-users] Touch Off Switch behavior

2010-03-30 Thread Mark Wendt (Contractor)
At 01:51 PM 3/29/2010, you wrote: The only reason I set the touch off position from the homed position was to see if Touch Off was actually working, or if I needed to delve a little deeper. That's what I thought Sounds like you nailed it! :-) Dave I'm a computer guy/sysadmin type at

[Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Sven Wesley
I have a strange behaviour on a machine. I have a breakout board (Rutex components), when the EMC2-computer starts the mill motor will start right away. When I start EMC2, it stops. The odd thing is, when I exit EMC2 the motor will stay off. I have tested both active high and low, could it be a

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Slavko Kocjancic
Sven Wesley pravi: I have a strange behaviour on a machine. I have a breakout board (Rutex components), when the EMC2-computer starts the mill motor will start right away. When I start EMC2, it stops. The odd thing is, when I exit EMC2 the motor will stay off. I have tested both active high

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Sven Wesley
2010/3/30 Slavko Kocjancic esla...@gmail.com Sven Wesley pravi: I have a strange behaviour on a machine. I have a breakout board (Rutex components), when the EMC2-computer starts the mill motor will start right away. When I start EMC2, it stops. The odd thing is, when I exit EMC2 the

[Emc-users] Access to Gcode

2010-03-30 Thread Riley Porter
Hello, This is my first post to this list and I am admitting still learning how EMC operates. A few of us are working on an gcode interpreter on an ATXmega AVR chip. (it does more than this however for this question that is a good enough explanation) My question is, Is there a way to

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Slavko Kocjancic
Sven Wesley pravi: 2010/3/30 Slavko Kocjancic esla...@gmail.com Sven Wesley pravi: I have a strange behaviour on a machine. I have a breakout board (Rutex components), when the EMC2-computer starts the mill motor will start right away. When I start EMC2, it stops. The

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Andy Pugh
On 30 March 2010 12:41, Sven Wesley svenne.d...@gmail.com wrote: I'm not sure I'm following you, it sounds like your solution is a relay that controls a relay, and then the problem remains?.. He is using a charge pump which energises the relays only when there is a continuous square-wave

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Slavko Kocjancic
Slavko Kocjancic pravi: Sven Wesley pravi: 2010/3/30 Slavko Kocjancic esla...@gmail.com Sven Wesley pravi: I have a strange behaviour on a machine. I have a breakout board (Rutex components), when the EMC2-computer starts the mill motor will start right away. When I

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Slavko Kocjancic
Andy Pugh pravi: On 30 March 2010 12:41, Sven Wesley svenne.d...@gmail.com wrote: I'm not sure I'm following you, it sounds like your solution is a relay that controls a relay, and then the problem remains?.. He is using a charge pump which energises the relays only when there is

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Viesturs Lācis
2010/3/30 Riley Porter rileypor...@gmail.com: Not sure I agree about not needing EMC.  I would like to use EMC (perhaps more to the point AXIS) to load cad files and then generate gcode... Riley, EMC does NOT generate gcode from CAD files - You have to use CAM software for that purpose -

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Riley Porter
Thanks for the clarity. So in tutorials that I have watched / read how to. I see AXIS load a DXF file then it passes gcode to emc which spits out step dir? What part is creating the gcode from cad files? Is this a function of AXIS? Again sorry if this is a lame question. Riley On Tue, Mar

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Mark Wendt (Contractor)
What you're seeing is AXIS loading a G code file, not a dxf file. There is no part of EMC2 that creates G code fromCad files. Axis is just a GUI for EMC2, which is a motion control software. You need some kind of CAM software to convert drawing files to G code. Mark At 09:05 AM

Re: [Emc-users] Access to Gcode

2010-03-30 Thread j...@coats.org
Riley, As mark said, EMC3 does not generate G-code from CAD files. Axis is a display interface for EMC for the machine operator. You need another program like pycam (see sourceforge.org) or cambam (cambam.co.uk) or others to load in CAD files like DXF or STL files, and generate g-code

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Stephen Wille Padnos
Riley Porter wrote: Thanks for the clarity. So in tutorials that I have watched / read how to. I see AXIS load a DXF file then it passes gcode to emc which spits out step dir? AXIS has the ability to run filters while loading files, so if someone has a DXF to G-code converter, that can

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Bernhard Kubicek
A common ATmega8, e.g. in an Arduino board, is regularly used for gcode interpretation on RepRaps and Makerbots. They can even load gcode from SD cards. However, I don't know if they are able to interpret [ ] or expressions, or even loops. Still, using axis as a gui might be beneficial, as if has

Re: [Emc-users] Access to Gcode

2010-03-30 Thread j...@coats.org
Stephen, I agree, that EMC and associated software can do a GREAT DEAL more than just interpret and display g-code, but Riley seems to be a 'rookie' just trying to understand the basics of EMC architecture and use. Knowing all the hooks are there is great, but right now he appears to

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Erik Christiansen
On Tue, Mar 30, 2010 at 08:48:19AM -0400, Riley Porter wrote: Not sure I agree about not needing EMC. I would like to use EMC (perhaps more to the point AXIS) to load cad files and then generate gcode... Use the existing interface then just hook into that gcode. So perhaps when I say EMC I

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Riley Porter
Thanks for all the info! Great stuff. Stephen. You talked about Filters able to be ran when loading files. I think this is a good place for me to look into. Is there any documentation on writing filters? Thanks, Riley On Tue, Mar 30, 2010 at 9:32 AM, Stephen Wille Padnos

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Andy Pugh
On 30 March 2010 13:58, Slavko Kocjancic esla...@gmail.com wrote: as I'm use that charge pump signal with another and gate (hardware gate as in that time I didn't realize that I can do that in software) There is even a HAL component specifically for E-Stop latching:

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Stephen Wille Padnos
Riley Porter wrote: Thanks for all the info! Great stuff. Stephen. You talked about Filters able to be ran when loading files. I think this is a good place for me to look into. Is there any documentation on writing filters? Filters are programs that get a file name on the command

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Bernhard Kubicek
basically, they are called on command line level, and output some gcode on the standard output stream, if I understand correctly. There is also a second idea of having a filter menu, that gives calls individual programs with one parameter, i.e. the file name of the currently opened gcode, and

Re: [Emc-users] Touch Off Switch behavior

2010-03-30 Thread Dave
Haha ... I need to remember that one... to tell my customers Although they might not see the humor in that oh well. ;-) Dave On 3/30/2010 5:23 AM, Mark Wendt (Contractor) wrote: At 01:51 PM 3/29/2010, you wrote: The only reason I set the touch off position from

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Slavko Kocjancic
Andy Pugh pravi: On 30 March 2010 13:58, Slavko Kocjancic esla...@gmail.com wrote: as I'm use that charge pump signal with another and gate (hardware gate as in that time I didn't realize that I can do that in software) There is even a HAL component specifically for E-Stop

Re: [Emc-users] Access to Gcode

2010-03-30 Thread Slavko Kocjancic
Bernhard Kubicek pravi: basically, they are called on command line level, and output some gcode on the standard output stream, if I understand correctly. There is also a second idea of having a filter menu, that gives calls individual programs with one parameter, i.e. the file name of the

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread alan battersby
On 30/03/10 13:58, Slavko Kocjancic wrote: You got my point. As I go little further. I configure chargepump as: loadrt charge_pump addf charge-pump servo-thread #Charge pump latch #When EMC is started up and Estop depresed charge pump stil wait to press ON button #When ON button is

Re: [Emc-users] Mill is running when EMC isn't started.

2010-03-30 Thread Andy Pugh
On 30 March 2010 22:26, alan battersby alan.batter...@ntlworld.com wrote: I have just bought a parallel port board called a PCPPS that accepts a charge pump input on pp1. When I inquired about this mentioning that I was using emc, I was told that charge pumping was for a a mach3 output. So

Re: [Emc-users] Random Direction Changes

2010-03-30 Thread darcys...@gmail.com
Thanks for all the suggestions. No solution yet but a quick update... The signal from the direction pin checked out ok on the multimeter so it is definitely a hardware issue. I have so far checked for bad connections leading up to the PCB and off it to the motor and they are ok. Next step is