[Emc-users] Logging coordinates.

2010-03-16 Thread Slavko Kocjancic
Hello...

Does someone know for beter way to log some coordinates?
I try with MDI but it's very slow work. Anybody have some clevre way?

I try like this

F5
(LOGOPEN,coordinates)

F3
Jog to correct position

F5
G30.1
(LOG,X#5181 Y#5182)

F3
Jog to next position

F5
G30.1
(LOG,X#5181 Y#5182)

F3
Jog to next position

F5
G30.1
(LOG,X#5181 Y#5182)

just loog any nubber of positions
and finaly for last position

F5
G30.1
(LOG,X#5181 Y#5182)
(LOGCLOSE)


That's works but in notime can be done something wrong.
Befora as I used TurboCnc there was key under jog to save position into 
file. I didn't seen something similar here.

Slavko.


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Logging coordinates.

2010-03-16 Thread Alex Joni
There is a script teach-in.py somewhere in the source of emc2, it should do 
what you want.

Regards,
Alex

- Original Message - 
From: Slavko Kocjancic esla...@gmail.com
To: Enhanced Machine Controller (EMC) emc-users@lists.sourceforge.net
Sent: Tuesday, March 16, 2010 4:13 PM
Subject: [Emc-users] Logging coordinates.


 Hello...

 Does someone know for beter way to log some coordinates?
 I try with MDI but it's very slow work. Anybody have some clevre way?

 I try like this

 F5
 (LOGOPEN,coordinates)

 F3
 Jog to correct position

 F5
 G30.1
 (LOG,X#5181 Y#5182)

 F3
 Jog to next position

 F5
 G30.1
 (LOG,X#5181 Y#5182)

 F3
 Jog to next position

 F5
 G30.1
 (LOG,X#5181 Y#5182)

 just loog any nubber of positions
 and finaly for last position

 F5
 G30.1
 (LOG,X#5181 Y#5182)
 (LOGCLOSE)


 That's works but in notime can be done something wrong.
 Befora as I used TurboCnc there was key under jog to save position into
 file. I didn't seen something similar here.

 Slavko.


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Logging coordinates.

2010-03-16 Thread Andy Pugh
On 16 March 2010 14:13, Slavko Kocjancic esla...@gmail.com wrote:

 Does someone know for beter way to log some coordinates?

You might be able to use the G38 probing moves. They log all nine axes
to the file specified in (PROBEOPEN, filename)
If the probe conditions are correct before the move I am not sure if
it exits immediately and logs the point or triggers an error and
doesn't log. In the first case then you should be able to wire the
probe input to true permanently in HAL and have it work.

-- 
atp

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Logging coordinates.

2010-03-16 Thread Stephen Wille Padnos
Andy Pugh wrote:
 On 16 March 2010 14:13, Slavko Kocjancicesla...@gmail.com  wrote:
 Does someone know for beter way to log some coordinates?
  
 You might be able to use the G38 probing moves. They log all nine axes
 to the file specified in (PROBEOPEN, filename)
 If the probe conditions are correct before the move I am not sure if
 it exits immediately and logs the point or triggers an error and
 doesn't log. In the first case then you should be able to wire the
 probe input to true permanently in HAL and have it work.

There are several options for probe moves.  I don't know which is which 
(it's in the manual here 
http://linuxcnc.org/docs/2.4/html/gcode_main.html#sub:G38.2:-Straight-Probe), 
but you can either look for the probe to make or break contact, and you 
can independently choose to error or not error if the desired condition 
isn't encountered before the end of the move.


- Steve


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Logging coordinates.

2010-03-16 Thread Slavko Kocjancic
I will try teach-in as in this option I use webcam instead probe. So G38 are
useless.

Slavko.

2010/3/16 Stephen Wille Padnos spad...@sover.net

 Andy Pugh wrote:
  On 16 March 2010 14:13, Slavko Kocjancicesla...@gmail.com  wrote:
  Does someone know for beter way to log some coordinates?
 
  You might be able to use the G38 probing moves. They log all nine axes
  to the file specified in (PROBEOPEN, filename)
  If the probe conditions are correct before the move I am not sure if
  it exits immediately and logs the point or triggers an error and
  doesn't log. In the first case then you should be able to wire the
  probe input to true permanently in HAL and have it work.
 
 There are several options for probe moves.  I don't know which is which
 (it's in the manual here
 
 http://linuxcnc.org/docs/2.4/html/gcode_main.html#sub:G38.2:-Straight-Probe
 ),
 but you can either look for the probe to make or break contact, and you
 can independently choose to error or not error if the desired condition
 isn't encountered before the end of the move.


 - Steve



 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Logging coordinates.

2010-03-16 Thread Slavko Kocjancic
Alex Joni pravi:
 There is a script teach-in.py somewhere in the source of emc2, it should do 
 what you want.

 Regards,
 Alex
   
Exactly right think. Works perfect.
Just one tuoght. How to make shortcut on desktop to point to teach-in?
To run proper I must type all that thing into terminal.

cd emc2-dev
source scripts/emc-environment
teach-in

?!?  as I say I'm new on linux. I can make shortcut but doesn't work as
I have option run in place.


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users