Re: [Emc-users] For anybody considering upgrading their motherboard in the next few months.

2012-09-14 Thread Peter C. Wallace
On Sat, 15 Sep 2012, Mark Cason wrote: > Date: Sat, 15 Sep 2012 00:15:04 -0500 > From: Mark Cason > To: "Enhanced Machine Controller (EMC)" > Subject: [Emc-users] For anybody considering upgrading their motherboard in > the next few months. > > > Just found this: > http://arstechnica.com/

Re: [Emc-users] For anybody considering upgrading their motherboard in the next few months.

2012-09-14 Thread Przemek Klosowski
> http://arstechnica.com/information-technology/2012/09/intel-declares-clover-trail-atom-processor-a-no-linux-zone/ If there will be a well-designed and/or inexpensive hardware with this chipset, it'll likely get reverse-engineered. The likely alternative is it'll be a proprietary curiosity that i

[Emc-users] For anybody considering upgrading their motherboard in the next few months.

2012-09-14 Thread Mark Cason
Just found this: http://arstechnica.com/information-technology/2012/09/intel-declares-clover-trail-atom-processor-a-no-linux-zone/ A sad day for Linux... -- -Mark Ne M'oubliez ---Family Motto Hope for the best, plan for the worst ---Personal Motto --

Re: [Emc-users] Counting and saving to file

2012-09-14 Thread cogoman
On 09/14/2012 03:53 PM, Stephen Dubovsky wrote: > Python can make database calls. Just write the lengths to a database. > Use database tools to do all the analysis like histogramming, etc. > Thats what they are very good at. Or, if the end user is handy with a spreadsheet, you could write it out

Re: [Emc-users] Counting and saving to file

2012-09-14 Thread Stephen Dubovsky
Python can make database calls. Just write the lengths to a database. Use database tools to do all the analysis like histogramming, etc. Thats what they are very good at. -- Got visibility? Most devs has no idea what the

Re: [Emc-users] Knee mill w/ encoder on knee

2012-09-14 Thread Stephen Dubovsky
Przemek, As I said to Dave, there is almost never a power drive on the knee. So, figuring out which to move via CNC is a trivial exercise;) But you have to move the knee between operations for different length tools all the time. And the quill of a BP isn't the stiffest thing around so you typica

Re: [Emc-users] Counting and saving to file

2012-09-14 Thread Przemek Klosowski
On Fri, Sep 14, 2012 at 2:45 PM, Viesturs Lācis wrote: >> Maybe check if the file exists, and if it does, open in append mode; >> otherwise open it normally for writing. > > Yes, that would be nice. > Can You share some source, where I can see, how does it look, when coded? As it turns out, open

Re: [Emc-users] Counting and saving to file

2012-09-14 Thread Viesturs Lācis
2012/9/14 Przemek Klosowski : > On Fri, Sep 14, 2012 at 2:26 AM, Viesturs Lācis > wrote: >> >> But if it saves automatically, I do not want to overwrite previous >> files, especially if there have been several times LinuxCNC has been >> started in one day - for example, in the morning, then on lun

Re: [Emc-users] Counting and saving to file

2012-09-14 Thread Przemek Klosowski
On Fri, Sep 14, 2012 at 2:26 AM, Viesturs Lācis wrote: > > But if it saves automatically, I do not want to overwrite previous > files, especially if there have been several times LinuxCNC has been > started in one day - for example, in the morning, then on lunch break Maybe check if the file exis

Re: [Emc-users] Knee mill w/ encoder on knee

2012-09-14 Thread Przemek Klosowski
On Fri, Sep 14, 2012 at 9:44 AM, Stephen Dubovsky wrote: > On manual knee mills there are often ways to combine the knee and > quill scales in the DRO to directly add/subtract from one another, > giving only one combined Z reading. This part would be easy enough to > do in HAL on a CNC. Add/subt

[Emc-users] CNC and saving the planet

2012-09-14 Thread Kirk Wallace
Here are links I recently found that may be of interest to some: http://opensourceecology.org/wiki/Main_Page http://opensourceecology.org/wiki/Industry http://opensourceecology.org/wiki/CNC_Circuit_Mill http://opensourceecology.org/wiki/3D_Printer -- Kirk Wallace http://www.wallacecompany

Re: [Emc-users] Knee mill w/ encoder on knee

2012-09-14 Thread Stephen Dubovsky
Dave, The knee typically isn't under CNC control on a knee mill. You move it up/down manually, lock it, re-touch off, and continue a program. Just wondering if its possible to keep track of the Z location w/o causing LCNC from running into the soft limits. Andy, Ok, joint level: that makes some m

Re: [Emc-users] Knee mill w/ encoder on knee

2012-09-14 Thread Andy Pugh
On 14 Sep 2012, at 15:44, Stephen Dubovsky wrote: > But how would you change the soft > limits? The limits are joint not axis limits, so I think it is a non-issue. -- Got visibility? Most devs has no idea what thei

Re: [Emc-users] Knee mill w/ encoder on knee

2012-09-14 Thread Dave Caroline
On Fri, Sep 14, 2012 at 2:44 PM, Stephen Dubovsky wrote: > I was wondering...(can you smell the smoke?) > > On manual knee mills there are often ways to combine the knee and > quill scales in the DRO to directly add/subtract from one another, > giving only one combined Z reading. This part would

[Emc-users] Knee mill w/ encoder on knee

2012-09-14 Thread Stephen Dubovsky
I was wondering...(can you smell the smoke?) On manual knee mills there are often ways to combine the knee and quill scales in the DRO to directly add/subtract from one another, giving only one combined Z reading. This part would be easy enough to do in HAL on a CNC. Add/subtract the quill encod

Re: [Emc-users] Counting and saving to file

2012-09-14 Thread John Thornton
Seems like the data collection would work with a python dictionary. For example you set up a dictionary entry for how many ranges they want then each time a board falls inside of a range set by the operator you increment the integer for that dictionary entry. http://www.tutorialspoint.com/pytho