CNC-Fräse: Unterschied zwischen den Versionen
Reox (Diskussion | Beiträge) |
Reox (Diskussion | Beiträge) |
||
Zeile 104: | Zeile 104: | ||
Example Gcode Header for Geilomat: | Example Gcode Header for Geilomat: | ||
G21 ; mm | G21 ; use mm | ||
G90 ; absolute coordinates | G90 ; absolute coordinates | ||
G54 ; use G54 coordinate system | |||
G40 ; turn radius compensation off | |||
G17 ; choose x,y plane | |||
G80 ; Cancel Motion Modes | |||
G94 ; movement speed is in mm/min | |||
G49 ; turn cutter legth compensation off | |||
G0 Z10 ; Go to saftyplane | G0 Z10 ; Go to saftyplane | ||
M3 ; switch on spindle | M3 ; switch on spindle | ||
S6000 ; Drehzahl auf 6000 min-1 einstellen | S6000 ; Drehzahl auf 6000 min-1 einstellen | ||
Zeile 114: | Zeile 119: | ||
G4 P120 ; 2min erneut warten. | G4 P120 ; 2min erneut warten. | ||
(immer um 6000 erhöhen bis die Drehzahl erreicht wurde) | (immer um 6000 erhöhen bis die Drehzahl erreicht wurde) | ||
F500 ; 500mm/minutes movement speed | |||
(your program starts here... now you can do things like) | |||
G0 X0 Y0 ; go to your 0,0 point rapidly | G0 X0 Y0 ; go to your 0,0 point rapidly | ||
G1 Z0 ; go to Z0 with 500mm/min (as set with F command) | |||
Typical gcode Tail: | Typical gcode Tail: |