forked from kliment/Printrun
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code cleaning, update comment, updated gcode test files
- Loading branch information
1 parent
5ac78fe
commit 6f41202
Showing
3 changed files
with
44 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; Print this file for a quick test of support for arc movements with | ||
; G2 and G3 and z helix movement up and down +- 10 mm, 6 times a full cycle | ||
; It takes only a half minute and prints above the print bed (z=20 mm) | ||
; w/o heating and extrusion | ||
|
||
G28 ; home | ||
G0 Z10.0000 S0 ; lift z | ||
G90 ; absolute mode | ||
G21 ; set unit to mm | ||
|
||
G2 X15 Y20 I30 J40 Z20 F8000 | ||
G3 X15 Y20 I30 J40 Z10 F8000 | ||
G2 X15 Y20 I30 J40 Z20 F8000 | ||
G3 X15 Y20 I30 J40 Z10 F8000 | ||
G2 X15 Y20 I30 J40 Z20 F8000 | ||
G3 X15 Y20 I30 J40 Z10 F8000 | ||
|
||
G0 X5.0000 | ||
G0 Y5.0000 | ||
|
||
M84; motors off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters