Hallo,
kann mir bitte wer helfen die Modal-Funktion abzuschalten ?
Danke,
Harald
Solved! Go to Solution.
Solved by AchimN. Go to Solution.
Hallo Harald,
ich vermute die Modalität in Hinblick auf G0-G3 ist gemeint?
Falls ja, bitte nach dieser Zeile im Postprozessor suchen:
var gMotionModal = createModal({}, gFormat);
und hiermit ersetzen:
var gMotionModal = createModal({force:true}, gFormat);
__
If you mean the modality for the G0-G3 commands, please search for the following line in the postprocessor:
var gMotionModal = createModal({}, gFormat);
and replace it with this code:
var gMotionModal = createModal({force:true}, gFormat);
Hallo Achim,
das hat mal schon sehr gut funktioniert.
Gibt es denn auch die Möglichkeit, in jeder Zeile X,Y und Z auszugeben ?
Auch wenn sich z.B. der X-Wert nicht ändert ?
Das Ganze ist der seltsamen Steuerung geschuldet, die einen "normalen" ISO-G-Code nicht verarbeiten kann.
Danke,
Harald
Yes thats no problem, see below:
var xOutput = createVariable({prefix:"X", force:true}, xyzFormat);
var yOutput = createVariable({prefix:"Y", force:true}, xyzFormat);
var zOutput = createVariable({onchange:function () {retracted = false;}, prefix:"Z", force:true}, xyzFormat);
Hello,
you save Easter for me.
One (i hope last) Problem.
The "controller" needs the Coordinates in 1/1000 mm without Seperator.
Can you tell me,how to modificate the corrospondending Line?
I think it´s the following.
var xyzFormat = createFormat({decimals:(unit == MM ? 3 : 4)});
Glad to hear that it is working for you!
So for example, X33.065 should be X33065 instead?
If that is needed, then this code will do it:
var xyzFormat = createFormat({decimals:0, scale:1000});
Perfect! (for that strange Controller)
G1 X95131 Y4950 Z-4800
G1 X94851 Y5400 Z-4800
G1 X94851 Y82850 Z-4800
G1 X192850 Y82850 Z-4800
G1 X192850 Y43900 Z-4800
G1 X192842 Y43822 Z-4800
G1 X192820 Y43747 Z-4800
Thank you very much and a happy Easter,
Harald
Can't find what you're looking for? Ask the community or share your knowledge.