diff options
author | kintel <kintel> | 2009-05-06 03:27:17 +0000 |
---|---|---|
committer | kintel <kintel@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2009-05-06 03:27:17 +0000 |
commit | 8ba4ed525e8e937c642d5121fe9fcee5a88e6cb1 (patch) | |
tree | a53e3ca9466ed84682008d3bab691e1925d2d0a9 | |
parent | 2c91688a793de7236563d75818f08687fc68860c (diff) | |
download | reprap-8ba4ed525e8e937c642d5121fe9fcee5a88e6cb1.tar.gz reprap-8ba4ed525e8e937c642d5121fe9fcee5a88e6cb1.zip |
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@2880 cb376a5e-1013-0410-a455-b6b1f9ac8223
-rw-r--r-- | trunk/users/metalab/python/gCalibrator/generate_calibrator.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/trunk/users/metalab/python/gCalibrator/generate_calibrator.py b/trunk/users/metalab/python/gCalibrator/generate_calibrator.py index b6aa5152..eab3bba9 100644 --- a/trunk/users/metalab/python/gCalibrator/generate_calibrator.py +++ b/trunk/users/metalab/python/gCalibrator/generate_calibrator.py @@ -1,8 +1,10 @@ +#!/usr/bin/env python + from gcodegen import * import math -feedrate = 180.0 -layerHeight = 0.3 +feedrate = 1500.0 +layerHeight = 0.372 testRuns = 15 testHeight = 4 @@ -18,7 +20,7 @@ print "G21" print "G90" print "G28" print "M103" -print "M108 S130.0" +print "M108 S255.0" print "M101" |