CNC-Fräse: Unterschied zwischen den Versionen
Reox (Diskussion | Beiträge) |
Reox (Diskussion | Beiträge) |
||
Zeile 119: | Zeile 119: | ||
G21 ; use mm | G21 ; use mm | ||
G90 ; absolute coordinates | G90 ; absolute coordinates | ||
G92.1 ; cancel offset coordinate system and set values to zero | |||
G54 ; use G54 coordinate system | G54 ; use G54 coordinate system | ||
G40 ; turn radius compensation off | G40 ; turn radius compensation off | ||
G17 ; choose x,y plane | G17 ; choose x,y plane | ||
G80 ; Cancel Motion Modes | G80 ; Cancel Motion Modes (e.g. active canned cycles) | ||
G94 ; movement speed is in mm/min | G94 ; movement speed is in mm/min | ||
G49 ; turn cutter legth compensation off | G49 ; turn cutter legth compensation off | ||
; It is always a good idea to go to a known safe location to run the warmup | |||
G0 Z10 ; Go to saftyplane | G0 Z10 ; Go to saftyplane | ||
; Spindle Warmup Sequence | |||
M3 ; turn on spindle | M3 ; turn on spindle | ||
S6000 ; 6000 min-1 spindle speed | S6000 ; 6000 min-1 spindle speed | ||
Zeile 132: | Zeile 135: | ||
G4 P120 ; again two minute wait | G4 P120 ; again two minute wait | ||
(repeat steps above (S + G4) until target speed is reached) | (repeat steps above (S + G4) until target speed is reached) | ||
F500 ; 500mm/minutes movement speed | F500 ; 500mm/minutes movement speed | ||
(your program starts here... now you can do things like) | (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 | ||
G4 P0 ; Dwell for no time | |||
G1 Z0 ; go to Z0 with 500mm/min (as set with F command) | G1 Z0 ; go to Z0 with 500mm/min (as set with F command) | ||