2.5.6 minikit support

master
Windell Oskay 4 years ago
parent 038a422e7e
commit 74b7e800c7

@ -84,7 +84,7 @@ class AxiDraw(inkex.Effect):
+ "1: Plot to first AxiDraw Found. "\
+ "2: Plot to specified AxiDraw. ")
self.version_string = "2.5.3" # Dated 2019-06-11
self.version_string = "2.5.6" # Dated 2019-12-13
self.spew_debugdata = False
@ -141,6 +141,9 @@ class AxiDraw(inkex.Effect):
elif self.options.model == 3:
self.x_bounds_max = axidraw_conf.x_travel_V3XLX
self.y_bounds_max = axidraw_conf.y_travel_V3XLX
elif self.options.model == 4:
self.x_bounds_max = axidraw_conf.x_travel_MiniKit
self.y_bounds_max = axidraw_conf.y_travel_MiniKit
else:
self.x_bounds_max = axidraw_conf.x_travel_default
self.y_bounds_max = axidraw_conf.y_travel_default

@ -2,7 +2,7 @@
# Part of the AxiDraw driver software
#
# https://github.com/evil-mad/axidraw
# Version 2.5.0, dated 2019-05-13.
# Version 2.5.6, dated 2019-12-13.
#
# Copyright 2019 Windell H. Oskay, Evil Mad Scientist Laboratories
#
@ -126,6 +126,9 @@ y_travel_default = 8.58 # AxiDraw V2 and AxiDraw V3: Y Carriage travel in inch
x_travel_V3A3 = 16.93 # AxiDraw V3/A3: X Carriage travel in inches. Default: 430 mm = about 16.93 inches
y_travel_V3A3 = 11.69 # AxiDraw V3/A3: Y Carriage travel in inches. Default: 297 mm = about 11.69 inches
x_travel_MiniKit = 6.30 # AxiDraw MiniKit: X Carriage travel in inches. Default: 160 mm = about 6.30 inches
y_travel_MiniKit = 4.00 # AxiDraw MiniKit: Y Carriage travel in inches. Default: 101.6 mm = 4.00 inches
x_travel_V3XLX = 23.42 # AxiDraw V3 XLX: X Carriage travel in inches. Default: 595 mm = about 23.42 inches
y_travel_V3XLX = 8.58 # AxiDraw V3 XLX: Y Carriage travel in inches. Default: 218 mm = about 8.58 inches

Loading…
Cancel
Save