On 13 October 2014 18:23, a k <[email protected]> wrote: > Hello > is it possible to make to emc2 send/generate signal like I/O signal-5 V DC > - when system reads F0 -rapid move?
Yes. But you might have to read some documentation. http://www.linuxcnc.org/docs/html/remap/structure.html Section 4.1 says that F is remappable. the stdglue.py creates a parametr #<feed> which contains the feed rate. So, you remap F to call a fragment of g-code like O<fword> sub O100 if [#<feed> eq 0] M64 P0 O100 else F#<feed> M65 P0 O100 endif O<fword> endsub -- atp If you can't fix it, you don't own it. http://www.ifixit.com/Manifesto ------------------------------------------------------------------------------ Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted through email, SMS, voice calls or mobile push notifications. Take corrective actions from your mobile device. http://p.sf.net/sfu/Zoho _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
