Gscreen - a GTK / Glade / Python based screen
N33G00G90G40M01E01
Please Log in or Create an account to join the conversation.
I understand now. thanks
I had not seen a toolchanger like that on a mill.
Is that you in the background?
No its a friend of mine.
My other changer the turent is working similar, the tool s are fixt in spring clamps from the side.
Please Log in or Create an account to join the conversation.
N33G00G90G40M01E01
linuxcnc does not like the E01
You can not just copy a fadal program to linuxcnc!
Nearly every machine control has its own language, many are based on Gcode, but have cycles programmed with special dialects.
You will have to translate them to pure gcode.
Norbert
Please Log in or Create an account to join the conversation.
@tjamcad
N33G00G90G40M01E01
linuxcnc does not like the E01
You can not just copy a fadal program to linuxcnc!
Nearly every machine control has its own language, many are based on Gcode, but have cycles programmed with special dialects.
You will have to translate them to pure gcode.
Norbert
Yes, I agree language and dialects. LinuxCNC should be able to translate and function so I dont have to change programs everytime i need to load a program.
Please Log in or Create an account to join the conversation.
John
Please Log in or Create an account to join the conversation.
That would be nice, but may be harder than it sounds.LinuxCNC should be able to translate and function so I dont have to change programs everytime i need to load a program.
The problem is how LinuxCNC is meant to work out what particular G-code dialect is being used, purely from the G-code.
There is work under-way to allow pluggable interpreters, so it should be possible in the future to swap the RS274NGC interpreter for a Fadal interpreter.
But that will still not work if you feed it Fanuc G-code.
G40 in RS274NGC is "cancel cutter radius compensation" and M01 is "optional pause."
What is that E01 expected to do in that line of G-code on a Fadal machine? I don't see a G-code to use it.
Please Log in or Create an account to join the conversation.
That would be nice, but may be harder than it sounds.LinuxCNC should be able to translate and function so I dont have to change programs everytime i need to load a program.
The problem is how LinuxCNC is meant to work out what particular G-code dialect is being used, purely from the G-code.
There is work under-way to allow pluggable interpreters, so it should be possible in the future to swap the RS274NGC interpreter for a Fadal interpreter.
But that will still not work if you feed it Fanuc G-code.
G40 in RS274NGC is "cancel cutter radius compensation" and M01 is "optional pause."
What is that E01 expected to do in that line of G-code on a Fadal machine? I don't see a G-code to use it.
The programer of the file said in this case E01 can be replaced by G54. How ever this is silly in my opinion. Maybe this can be added to the LinuxCNC3 list? If I want to run a program on a Haas, Toyoda, Fadal, Cincitti, Viper, or LinuxCNC converted machine I should be able to. Currently I can't but LinuxCNC would be more apealing if it could decide between them.
Please Log in or Create an account to join the conversation.
Sounds like a good job for you to write translators for other G code to LinucCNC.
John
Was that directed at me?
Please Log in or Create an account to join the conversation.
Sounds like a good job for you to write translators for other G code to LinucCNC.
John
Was that directed at me?
Aye.
Please Log in or Create an account to join the conversation.
That would be nice, but may be harder than it sounds.LinuxCNC should be able to translate and function so I dont have to change programs everytime i need to load a program.
The problem is how LinuxCNC is meant to work out what particular G-code dialect is being used, purely from the G-code.
There is work under-way to allow pluggable interpreters, so it should be possible in the future to swap the RS274NGC interpreter for a Fadal interpreter.
But that will still not work if you feed it Fanuc G-code.
That is a common problem in shops that uses many different controls and use the special features of them.
Things you could do:
You stick to the generic-between-controls Gcodes
It you use CAD/CAM you build a post processor for each machine.
If it's simple substitution - Linxcnc can run a filter program before running the Gcode. (Someone would need to write this)
use linuxcnc's 'remap' capability to change linuxcnc to understand different dialects ( at the moment you can't change arbitrary Gcode -only a small subset)
Chris M
Please Log in or Create an account to join the conversation.