Änderungen

909 Bytes hinzugefügt ,  Freitag um 15:59
Anpassungen für Fusion360 Postprozessor
Zeile 201: Zeile 201:  
{{zip|Happylab_fusion360_tools_lib.zip|1KB|Werkzeugdatenbank für Fusion360}}
 
{{zip|Happylab_fusion360_tools_lib.zip|1KB|Werkzeugdatenbank für Fusion360}}
    +
==== Abmessen von Werkzeug ====
 +
Dafür wurde in den Standard eding.cps postprozessor: folgender Code eingearbeitet:
 +
 +
if (tool.manualToolChange) {
 +
 +
      onCommand(COMMAND_STOP);
 +
 +
      writeComment("MANUAL TOOL CHANGE TO T" + toolFormat.format(tool.number));
 +
 +
      '''writeBlock('''
 +
 +
'''            mFormat.format(5), // M05 - Stop spindle'''
 +
 +
'''            mFormat.format(9)  // M09 - Turn off coolant'''
 +
 +
'''        );'''
 +
 +
'''      writeBlock(gFormat.format(0), "Z" + xyzFormat.format(20.320)); // G00 Z20.320 - Rapid move to safe Z height'''
 +
 +
'''      writeBlock("T" + toolFormat.format(tool.number), mFormat.format(6)); // T1 M06 - Tool change'''
 +
 +
'''      writeBlock(gFormat.format(43), hFormat.format(tool.number)); // G43 H1 - Apply tool length compensation'''
 +
 +
    }
 +
 +
Verfügbar als eigene Datei: Dann wird wie bei VCarve eine Werkzeugsabmessung durchgeführt.
    
===Schnittdatenrechner===
 
===Schnittdatenrechner===
4

Bearbeitungen