Re: [Emc-users] PCB circuit board drill file, useful format

2016-04-25 Thread Nicklas Karlsson
> Excellon drill files are a very old variant of RS-274D. > They use suppressed decimal points and suppressed trailing > decimals. So, no way will LinuxCNC read them as is. So, if > the format is 2.3, then an X coordinate of 1.2345 will be > X01234, and a coordinate of 1.2 will be X012. > >

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Nicklas Karlsson
> On 04/25/2016 11:56 AM, Nicklas Karlsson wrote: > > I am looking at using linuxcnc to drill my circuit boards. There is a few > > commands in file, a tool table and coordinates. It is not possible run the > > file directly in linuxcnc. I think this kind of file could be of general > > use then

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Jon Elson
On 04/25/2016 12:15 PM, andy pugh wrote: > On 25 April 2016 at 17:56, Nicklas Karlsson > wrote: >> Do anyone have any suggestions on how to attack it? > An input filter than replaces Tn with > > M6 Tn > G81 F50 R0.5 Z-3 > > Then the X Y coordinate pairs will drill holes. > Excellon drill files are

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Jon Elson
On 04/25/2016 11:56 AM, Nicklas Karlsson wrote: > I am looking at using linuxcnc to drill my circuit boards. There is a few > commands in file, a tool table and coordinates. It is not possible run the > file directly in linuxcnc. I think this kind of file could be of general use > then a pattern

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Cole
On 4/25/2016 12:03 PM, andy pugh wrote: > On 25 April 2016 at 16:34, Dave Cole wrote: >> Don't over look grease also. Pressurized oil is probably the best, >> however a lot of machines simply have zerk fittings to grease slides. > A lot of those "zerk" fittins are actually for oil. > > When buying

Re: [Emc-users] Metals question

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 15:34:05 andy pugh wrote: > On 25 April 2016 at 18:48, Gene Heskett wrote: > > What sort of an encoder is hidden under it? > > That iteration was a slotted aluminium disc using reflective sensors. > It was later replaced by a gear-driven conventional encoder inside the > h

Re: [Emc-users] JT for president

2016-04-25 Thread John Thornton
We still have one swamp left... it took man two ginormous tries to drain the swamps but one place could not be drained so it still has prehistoric fish swimming it it... JT On 4/25/2016 11:32 AM, Gene Heskett wrote: > On Monday 25 April 2016 07:41:45 John Thornton wrote: > >> Actually that is S

Re: [Emc-users] Metals question

2016-04-25 Thread andy pugh
On 25 April 2016 at 18:48, Gene Heskett wrote: > What sort of an encoder is hidden under it? That iteration was a slotted aluminium disc using reflective sensors. It was later replaced by a gear-driven conventional encoder inside the headstock casting. -- atp "A motorcycle is a bicycle with a p

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Bengt Sjölund
If you have proper EXCELLON drillfile format cut and paste that code in left column, after that see to it that you have correct input parameters for the EXCELLON file and then GENERATE G-CODE. There are NO C chars in the generated G-code /Bengt Den 2016-04-25 kl. 20:11, skrev Nicklas Karlsson:

Re: [Emc-users] PCB circuit board drill file, got it

2016-04-25 Thread Nicklas Karlsson
Didn't read carefully enough, got it now. On Mon, 25 Apr 2016 19:58:47 +0200 Bengt Sjölund wrote: > http://eng-serve.com/cnc/excellon_gcode.html > > Den 2016-04-25 kl. 19:54, skrev Nicklas Karlsson: > > I get problem with tool table setup. I have to comment out "INCH" and are > > not able to f

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Nicklas Karlsson
On Mon, 25 Apr 2016 19:58:47 +0200 Bengt Sjölund wrote: > http://eng-serve.com/cnc/excellon_gcode.html Tried it and linuxcnc make complain about the "C" character on the first T line. I have been able to build my own CNC machine but this is the first time I use g-code. I simply can't find what

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Bengt Sjölund
http://eng-serve.com/cnc/excellon_gcode.html Den 2016-04-25 kl. 19:54, skrev Nicklas Karlsson: > I get problem with tool table setup. I have to comment out "INCH" and are not > able to figure out the T commandd. > > M48 > INCH > T73 C0.020 > T72 C0.058 > T71 C0.030 > T70 C0.210 > T69 C0.036 > T68

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Nicklas Karlsson
I get problem with tool table setup. I have to comment out "INCH" and are not able to figure out the T commandd. M48 INCH T73 C0.020 T72 C0.058 T71 C0.030 T70 C0.210 T69 C0.036 T68 C0.050 T67 C0.038 T66 C0.040 T65 C0.068 > On 25 April 2016 at 17:56, Nicklas Karlsson > wrote: > > Do anyone have

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 13:32:27 Nicklas Karlsson wrote: > I could issue this G81 commands once and not for each coordinate? > Yes, see page 238 in the docs pdf where canned cycles are described. > > On Mon, 25 Apr 2016 18:15:24 +0100 > > andy pugh wrote: > > On 25 April 2016 at 17:56, Nicklas Ka

Re: [Emc-users] Metals question

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 13:19:13 andy pugh wrote: > On 25 April 2016 at 18:03, Gene Heskett wrote: > > But at that diameter, > > best done on the mill as the drive parts at that diameter would be > > falling out in pieces as the 1 HP motor breaks them. BTDT, way too > > many times already. > > My

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread Nicklas Karlsson
I could issue this G81 commands once and not for each coordinate? On Mon, 25 Apr 2016 18:15:24 +0100 andy pugh wrote: > On 25 April 2016 at 17:56, Nicklas Karlsson > wrote: > > Do anyone have any suggestions on how to attack it? > > An input filter than replaces Tn with > > M6 Tn > G81 F50

Re: [Emc-users] _camon.ngc

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 13:12:10 andy pugh wrote: > On 25 April 2016 at 17:53, Gene Heskett wrote: > > Whats this Andy? Here, M4 is reverse spindle and I've not a clue > > what the P5 means in this context. > > > >> M4 P5 > > Sorry, was meant to be G5 so you had time to see the effect. I think y

Re: [Emc-users] Metals question

2016-04-25 Thread andy pugh
On 25 April 2016 at 18:03, Gene Heskett wrote: > But at that diameter, > best done on the mill as the drive parts at that diameter would be > falling out in pieces as the 1 HP motor breaks them. BTDT, way too many > times already. My version of a drive system on my 9x lathe has been bullet-proof

Re: [Emc-users] PCB circuit board drill file

2016-04-25 Thread andy pugh
On 25 April 2016 at 17:56, Nicklas Karlsson wrote: > Do anyone have any suggestions on how to attack it? An input filter than replaces Tn with M6 Tn G81 F50 R0.5 Z-3 Then the X Y coordinate pairs will drill holes. -- atp "A motorcycle is a bicycle with a pandemonium attachment and is designed

Re: [Emc-users] _camon.ngc

2016-04-25 Thread andy pugh
On 25 April 2016 at 17:53, Gene Heskett wrote: > Whats this Andy? Here, M4 is reverse spindle and I've not a clue what the > P5 means in this context. >> M4 P5 Sorry, was meant to be G5 so you had time to see the effect. -- atp "A motorcycle is a bicycle with a pandemonium attachment and is d

Re: [Emc-users] _camon.ngc

2016-04-25 Thread andy pugh
On 25 April 2016 at 18:12, andy pugh wrote: > Sorry, was meant to be G5 so you had time to see the effect. G4, even. -- atp "A motorcycle is a bicycle with a pandemonium attachment and is designed for the especial use of mechanical geniuses, daredevils and lunatics." — George Fitch, Atlanta Co

Re: [Emc-users] Metals question

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 12:33:11 andy pugh wrote: > On 25 April 2016 at 17:22, Gene Heskett wrote: > >> On the Holbrook Minor I made a special casting: > >> https://picasaweb.google.com/108164504656404380542/Holbrook#6237477 > >>947 128358578 > > > > There, you did the opposite offset to what I h

[Emc-users] PCB circuit board drill file

2016-04-25 Thread Nicklas Karlsson
I am looking at using linuxcnc to drill my circuit boards. There is a few commands in file, a tool table and coordinates. It is not possible run the file directly in linuxcnc. I think this kind of file could be of general use then a pattern of holes need to be drilled. Do anyone have any suggest

Re: [Emc-users] _camon.ngc

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 12:17:09 andy pugh wrote: > On 25 April 2016 at 17:05, Gene Heskett wrote: > > So I'm still missing something in my understanding. Why does the > > machine immediately revert to where it started from? > > Do one, or the other, but not both... > > G43 H99 will apply the T99

Re: [Emc-users] Learning LinuxCNC Installation Video

2016-04-25 Thread Chris Albertson
About audio recording. As you've figured out audio quality is more important than video quality. Viewers will put up with some noise in the video but any audio defect really stand out. The way to do this is 1) Get a decent external, separate audio recording device. The cheapest is the "Zoom H

Re: [Emc-users] Metals question

2016-04-25 Thread andy pugh
On 25 April 2016 at 17:22, Gene Heskett wrote: > >> On the Holbrook Minor I made a special casting: >> https://picasaweb.google.com/108164504656404380542/Holbrook#6237477947 >>128358578 > > There, you did the opposite offset to what I have in mind, but again the > carriage has a wide enough footpr

Re: [Emc-users] JT for president

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 07:41:45 John Thornton wrote: > Actually that is Swamp East Missouri :) > > JT > Minor detail John, its only another thousand miles. :) > On 4/25/2016 4:16 AM, W. Martinjak wrote: > > The 7i90HD needs just 10 Days from the swamps in Michigan to the > > valleys in the Alps.

Re: [Emc-users] Metals question

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 06:47:57 Sarah Armstrong wrote: > Cast Iron is the better Gene , > the larger in Dia you can manage the better , it helps spread the load > over the whol carrage rather than just the area of the toolpost > i have a similar block on mine which is only an 1 3/8 high x 3 , i >

Re: [Emc-users] Metals question

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 06:46:36 andy pugh wrote: > On 25 April 2016 at 11:29, Gene Heskett wrote: > > For me, since its function can be done by LCNC, it is nothing but a > > spacer 1.6" tall to hold the QC post. So I have considered replacing > > it with a round block of metal nominally 3" in di

Re: [Emc-users] _camon.ngc

2016-04-25 Thread andy pugh
On 25 April 2016 at 17:05, Gene Heskett wrote: > So I'm still missing something in my understanding. Why does the machine > immediately revert to where it started from? Do one, or the other, but not both... G43 H99 will apply the T99 offset, but not move the axis. So: (save the current position

Re: [Emc-users] _camon.ngc

2016-04-25 Thread Gene Heskett
On Monday 25 April 2016 06:41:58 andy pugh wrote: > On 25 April 2016 at 03:38, Gene Heskett wrote: > > it appears that the cameras offsets from the camera > > view to the spindles centerpoint are to be contained in the #5211(X) > > and #5212(Y) variables, > > Those are actually the G92 offsets: >

Re: [Emc-users] Lubrication

2016-04-25 Thread andy pugh
On 25 April 2016 at 16:34, Dave Cole wrote: > Don't over look grease also. Pressurized oil is probably the best, > however a lot of machines simply have zerk fittings to grease slides. A lot of those "zerk" fittins are actually for oil. When buying a second-hand machine tool it is often necessar

Re: [Emc-users] Servo as Steppers by LinuxCnc

2016-04-25 Thread Nicklas Karlsson
On Mon, 25 Apr 2016 15:52:57 +0300 pyrros...@metrotech-hellas.gr wrote: > i can send you the whole hal code if you want. I dont know if it is > correct to send it here as an attachment or somewhere else (for the > rules of emc-users list). > There are 2 boards. Each board controls up 3 servo

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Caroline
I should have mentioned the beam axle was installed in 1849, not sure if the bearing bronzes have ever been replaced on the beam axle. In my time (about 15 years) I have only machined one half bearing on a pump rod that had dirt blocking the oilway, we cleaned the journal surface with wet and dry a

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Cole
>>Only 30 tons... Geez, only 30 tons.Hardly worth mentioning. ;-) Dave On 4/25/2016 10:54 AM, Dave Caroline wrote: > We have the similar sort of problem with the axles on a beam engine, > they are plain bronze and only rock with 30 tons of rocking weight. we > actually use a steam cylinder

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Cole
Don't over look grease also. Pressurized oil is probably the best, however a lot of machines simply have zerk fittings to grease slides. I think a lot of that depends on the speed that the bearing operates at. Dave On 4/25/2016 11:26 AM, Nicklas Karlsson wrote: > Sounds reasonable. Slideway wear

Re: [Emc-users] Lubrication, (Slideway wear)

2016-04-25 Thread Bengt Sjölund
Do you happen to know how if wear are a common problem for slideways and proper lubrication is important to avoid wear? oil should be oozing out from slideways, if not old oil can be clogged in the oil lines. Cheers Bengt Den 2016-04-25 kl. 17:14, skrev Nicklas Karlsson: > On Mon, 25 Apr 20

Re: [Emc-users] Lubrication

2016-04-25 Thread Nicklas Karlsson
Sounds reasonable. Slideway wear I would consider a major problem for a machine. Smaller parts however could be changed. On Mon, 25 Apr 2016 10:59:00 -0400 Bruce Layne wrote: > I waited a little while to see if any experts provided a definitive > reference. This list amazes me at times with t

Re: [Emc-users] Lubrication, (Slideway wear)

2016-04-25 Thread Nicklas Karlsson
On Mon, 25 Apr 2016 15:43:16 +0100 andy pugh wrote: > On 25 April 2016 at 15:37, Nicklas Karlsson > wrote: > > > > Yes these kind of bearing or whatever it is called used to move spindle or > > table in CNC machines. High friction I will discover although then high > > wear is discovered it is

Re: [Emc-users] Lubrication

2016-04-25 Thread Bruce Layne
I waited a little while to see if any experts provided a definitive reference. This list amazes me at times with the cumulative knowledge, and I'm still hoping something is posted that is concise and informative. I know that Misumi provides good technical info for their products and I seem to

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Caroline
We have the similar sort of problem with the axles on a beam engine, they are plain bronze and only rock with 30 tons of rocking weight. we actually use a steam cylinder oil for our bearings. It is a type of oil like the slideway oil that really sticks to the surface and takes little movement to li

Re: [Emc-users] Lubrication

2016-04-25 Thread andy pugh
On 25 April 2016 at 15:37, Nicklas Karlsson wrote: > > Yes these kind of bearing or whatever it is called used to move spindle or > table in CNC machines. High friction I will discover although then high wear > is discovered it is a little bit late. For that application you want "slideway lubri

Re: [Emc-users] Lubrication

2016-04-25 Thread Nicklas Karlsson
> On 4/25/2016 9:17 AM, Nicklas Karlsson wrote: > > Do anyone have experience on lubrication of slide bearings, ball bearings > > and such things? > > My guess is that everyone on this list has some experience with that.. > Can you narrow the subject a bit? > > Dave Yes these kind of bearing

Re: [Emc-users] Lubrication

2016-04-25 Thread Dale Ertley
Hello The actual service life of wind turbine gearboxes is often well below the desired 20 years. One of the prevalent failure modes in gearbox bearing raceways is white structure flaking (WSF) by the formation of butterflies and white etching cracks with associated microstructural change called

Re: [Emc-users] Lubrication

2016-04-25 Thread Leonardo Marsaglia
2016-04-25 11:10 GMT-03:00 Leonardo Marsaglia : > > The oil is dripped directly on the bearings but it's an open circuit, > nothing complicated. The oil returns to the pump via a 5/16 cooper tube. I > really don't know wich kind of pump this is, but I suspect it has an > eccentric with a diaphragm

Re: [Emc-users] Lubrication

2016-04-25 Thread andy pugh
On 25 April 2016 at 14:17, Nicklas Karlsson wrote: > Do anyone have experience on lubrication of slide bearings, ball bearings and > such things? You could contact https://www.linkedin.com/in/gareth-fish-b841961b -- atp "A motorcycle is a bicycle with a pandemonium attachment and is designed f

Re: [Emc-users] Lubrication

2016-04-25 Thread Leonardo Marsaglia
Here we've got an old Italian lathe that is dedicated to gundrilling and for the spindle bearings (wich are two roller radial bearings and a thrust roller bearing), it has a simple oil pump driven by the same spindle motor, so it turns whenever the spindle turns. The oil is dripped directly on the

[Emc-users] Lubrication

2016-04-25 Thread Roland Jollivet
I just so happened to spend the whole weekend reading about bearings and lubrication. Here are some articles with discussion on lubrication. I don't know if the links will work for you. They might get chopped up. I can send the titles for you to google if this does not work. Regards Roland http

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Cole
On 4/25/2016 9:17 AM, Nicklas Karlsson wrote: > Do anyone have experience on lubrication of slide bearings, ball bearings and > such things? My guess is that everyone on this list has some experience with that.. Can you narrow the subject a bit? Dave -

Re: [Emc-users] Lubrication

2016-04-25 Thread Nicklas Karlsson
> And a reading list if you have a good local library > http://www.collection.archivist.info/searchv13.php?searchstr=621.822 > > Dave Caroline I read the list and it seems nobody cared about lubrication for like more than sixty years. It is on the limit the last person who wrote a book about lu

Re: [Emc-users] Servo as Steppers by LinuxCnc

2016-04-25 Thread pyrros . ts
i can send you the whole hal code if you want. I dont know if it is correct to send it here as an attachment or somewhere else (for the rules of emc-users list). There are 2 boards. Each board controls up 3 servo motors. But each board has just one pin for steps and one pin for direction. So

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Caroline
And a reading list if you have a good local library http://www.collection.archivist.info/searchv13.php?searchstr=621.822 Dave Caroline -- Find and fix application performance issues faster with Applications Manager Applic

Re: [Emc-users] Lubrication

2016-04-25 Thread Dave Caroline
This is a deep subject named tribology. some lubricant makers also provide recommendations. see refs at bottom https://en.wikipedia.org/wiki/Tribology Dave Caroline -- Find and fix application performance issues faster wi

[Emc-users] Lubrication

2016-04-25 Thread Nicklas Karlsson
Do anyone have experience on lubrication of slide bearings, ball bearings and such things? Experience of bad lubrication with destroyed bearings is of particular interest. References to documentation is also good and in particular scientific articles. Regards Nicklas Karlsson ---

[Emc-users] Learning LinuxCNC Installation Video

2016-04-25 Thread Jim Craig
All, I have posted a new video showing the installation process. This video goes over downloading the ISO, Making the bootable flash drive, and installing the software. The video is located here: https://www.youtube.com/watch?v=NavAW5-Xx-Y I know the audio is less than perfect. I am working on

Re: [Emc-users] Servo as Steppers by LinuxCnc

2016-04-25 Thread andy pugh
On 25 April 2016 at 13:52, wrote: > There are 2 boards. Each board controls up 3 servo motors. But each board > has just one pin for steps and one pin for direction. So with one bitslider > and one mux the hal code chooses for which motor is the dir and steps each > time. I could imagine that

Re: [Emc-users] Servo as Steppers by LinuxCnc

2016-04-25 Thread Nicklas Karlsson
> I have a robot RM501 of Mitsubishi to program it with linux cnc. > There is already connection with linuxcnc but when i send G code > commands it doesnt go exactly where i want. You could not expect dynamic response to be infinitely fast then of course there may be noise on the signal. Nick

Re: [Emc-users] JT for president

2016-04-25 Thread W. Martinjak
On 2016-04-25 13:41, John Thornton wrote: > Actually that is Swamp East Missouri :) Ooops! This happens when fingers try to think ;) Sorry! -- "In der Wissenschaft siegt nie eine neue Theorie, nur ihre Gegner sterben nach und nach" Max Planck

Re: [Emc-users] JT for president

2016-04-25 Thread Mark
There ya have it. No swamps or trout in Michigan. Mark On 04/25/2016 07:41 AM, John Thornton wrote: > Actually that is Swamp East Missouri :) > > JT > > On 4/25/2016 4:16 AM, W. Martinjak wrote: >> The 7i90HD needs just 10 Days from the swamps in Michigan to the valleys in >> the Alps. >> Bes

Re: [Emc-users] JT for president

2016-04-25 Thread sam sokolik
damn auto-correct! ;) sam On 4/25/2016 6:41 AM, John Thornton wrote: > Actually that is Swamp East Missouri :) > > JT > > On 4/25/2016 4:16 AM, W. Martinjak wrote: >> The 7i90HD needs just 10 Days from the swamps in Michigan to the valleys in >> the Alps. >> Best service ever. >> >> Thanks JT!

Re: [Emc-users] JT for president

2016-04-25 Thread Mark
On 04/25/2016 05:16 AM, W. Martinjak wrote: > The 7i90HD needs just 10 Days from the swamps in Michigan to the valleys in > the Alps. > Best service ever. > > Thanks JT! > > BR matsche > Swamps? There's no swamps. There's no trout in Michigan either. ;-) Mark Grayling, MI -

[Emc-users] lathe project for sale

2016-04-25 Thread Anders Wallin
Hi all, I have a lathe project for sale (due to lack of time...). Images here: https://www.dropbox.com/sh/d5gl0ga35zljsdb/AAD_9FseS-Zx1VLwIkrjuub6a?dl=0 Located in Helsinki Finland. Northern Europe would be preferred especially for heavy items. In particular for someone building a linuxcnc-based l

Re: [Emc-users] JT for president

2016-04-25 Thread John Thornton
Actually that is Swamp East Missouri :) JT On 4/25/2016 4:16 AM, W. Martinjak wrote: > The 7i90HD needs just 10 Days from the swamps in Michigan to the valleys in > the Alps. > Best service ever. > > Thanks JT! > > BR matsche > --

Re: [Emc-users] Servo as Steppers by LinuxCnc

2016-04-25 Thread andy pugh
On 25 April 2016 at 10:53, t. > It has servo motors but they work through linuxcnc as stepper motors. > I send steps and direction in the board of mitsubishi for motors. > When i use servo as steppers how could i choose the step time,step > space,direction hold and setup Those will be specified

Re: [Emc-users] Metals question

2016-04-25 Thread Sarah Armstrong
Cast Iron is the better Gene , the larger in Dia you can manage the better , it helps spread the load over the whol carrage rather than just the area of the toolpost i have a similar block on mine which is only an 1 3/8 high x 3 , i should have made it at least another inch or two in dia the only

Re: [Emc-users] Metals question

2016-04-25 Thread andy pugh
On 25 April 2016 at 11:29, Gene Heskett wrote: > > For me, since its function can be done by LCNC, it is nothing but a > spacer 1.6" tall to hold the QC post. So I have considered replacing it > with a round block of metal nominally 3" in diameter so it would sit > solidly on the cross slider, be

Re: [Emc-users] _camon.ngc

2016-04-25 Thread andy pugh
On 25 April 2016 at 03:38, Gene Heskett wrote: > it appears that the cameras offsets from the camera > view to the spindles centerpoint are to be contained in the #5211(X) and > #5212(Y) variables, Those are actually the G92 offsets: http://linuxcnc.org/docs/2.7/html/gcode/overview.html#gcode:par

[Emc-users] Servo as Steppers by LinuxCnc

2016-04-25 Thread pyrros . ts
I have a robot RM501 of Mitsubishi to program it with linux cnc. There is already connection with linuxcnc but when i send G code commands it doesnt go exactly where i want. It has servo motors but they work through linuxcnc as stepper motors. I send steps and direction in the board of mitsubis

[Emc-users] Metals question

2016-04-25 Thread Gene Heskett
Greetings all; I may have found the source of some of my tool destroying chatter. I pulled the compound off this POS last night, and discovered that it was not sitting solidly, flat cast iron to flat cast iron at the mating faces, but was rocking on the corners of that screwed onto one bolt-on

[Emc-users] JT for president

2016-04-25 Thread W. Martinjak
The 7i90HD needs just 10 Days from the swamps in Michigan to the valleys in the Alps. Best service ever. Thanks JT! BR matsche -- "In der Wissenschaft siegt nie eine neue Theorie, nur ihre Gegner sterben nach und nach" Max Planck -