aboutsummaryrefslogtreecommitdiffstats
path: root/test/klippy/move.gcode
blob: 9bc1f0f6aa68fab115b8113a689acebfd7ea4af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; Simple movement tests

; Start by homing the printer.
G28
G90
G1 F6000

; Z / X / Y moves
G1 Z1
G1 X1
G1 Y1

; Delayed moves
G1 Y2
G4 P100
G1 Y1.5
M400
G1 Y1

; diagonal moves
G1 X0 Y0
G1 X1 Z2
G1 X0 Y1 Z1

; extrude only moves
G1 E1
G1 E0

; regular extrude move
G1 X0 Y0 E.01

; fan speeds
M106 S50
M106
M106 S90
M106 S0
M107

; coordinate manipulation
G92 Y-3
G1 Y-2
G91
G1 Y-1