summaryrefslogtreecommitdiffstats
path: root/tools/scalecalc.py
blob: e8e77323e07f035d53440e8c909c945a3b38ed70 (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
44
45
46
47
48
#!/usr/bin/env python
"""
# EMC2 stepper SCALE calculation helper
# Copyright (c) 2009 Michael Buesch <mb@bu3sch.de>
# Licensed under the GNU GPL version 2 or (at your option) any later version.
"""

import sys
import getopt

degree_per_fullstep = 1.8
units_per_rev = None
range_max = 30

def usage():
	print "Usage: %s [OPTIONS]" % sys.argv[0]
	print ""
	print "-u|--units-per-rev X        Use X units per revolution (mandatory)"
	print "-d|--deg-per-fullstep X     Use X degree per motor-fullstep (default 1.8)"
	print "-r|--range X                List scale values up to X microsteps (default 30)"
	print "-h|--help                   Print this help text"

try:
	(opts, args) = getopt.getopt(sys.argv[1:],
		"hu:d:r:",
		[ "help", "units-per-rev=", "deg-per-fullstep=",
		  "range=", ])
	for (o, v) in opts:
		if o in ("-h", "--help"):
			usage()
			sys.exit(0)
		if o in ("-u", "--units-per-rev"):
			units_per_rev = float(v)
		if o in ("-d", "--deg-per-fullstep"):
			degree_per_fullstep = float(v)
		if o in ("-r", "--range"):
			range_max = int(v)
	if units_per_rev is None:
		raise ValueError()
except (ValueError, getopt.GetoptError):
	usage()
	sys.exit(1)

for microsteps in range(1, range_max + 1):
	scale = (float(microsteps) / float(degree_per_fullstep)) *\
		360.0 * (1.0 / float(units_per_rev))

	print "%d microsteps  =>  SCALE=%f" % (microsteps, scale)
bues.ch cgit interface