Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added configs for the Calcomp Artisan plotter #418

Merged
merged 2 commits into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Release date: UNRELEASED

### New features and improvements

* ...
* Added HPGL configuration for the Calcomp Artisan plotter (thanks to Andee Collard and @ithinkido) (#418)

### Bug fixes

Expand Down
54 changes: 54 additions & 0 deletions vpype/vpype_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,57 @@ y_axis_up = true
origin_location = ["15mm", "200mm"]
final_pu_params = "0,7721"
info = "The plotter dip switches must be set to Metric paper sizes mode."

[device.artisan]
name = "Calcomp Artisan"
plotter_unit_length = "0.02488mm"
pen_count = 8

[[device.artisan.paper]]
name = "a4"
aka_names = ["A4"]
paper_size = ["297mm", "210mm"]
x_range = [-5146, 5146]
y_range = [-3746, 3746]
y_axis_up = true
rotate_180 = true
origin_location = ["144mm", "105mm"]
final_pu_params = "-5146,3746"
info = "Paper should be loaded in portrait"


[[device.artisan.paper]]
name = "a3"
aka_names = ["A3"]
paper_size = ["420mm", "297mm"]
x_range = [-7686, 7686]
y_range = [-5397, 5397]
y_axis_up = true
rotate_180 = true
origin_location = ["206mm", "148mm"]
final_pu_params = "-7686,5397"
info = "Paper should be loaded in portrait"

[[device.artisan.paper]]
name = "a2"
aka_names = ["A2"]
paper_size = ["594mm", "420mm"]
x_range = [-11115, 11115]
y_range = [-7937, 7937]
y_axis_up = true
rotate_180 = true
origin_location = ["293mm", "210mm"]
final_pu_params = "-11115,7937"
info = "Paper should be loaded in portrait"

[[device.artisan.paper]]
name = "a1"
aka_names = ["A1"]
paper_size = ["841mm", "594mm"]
x_range = [-16068, 16068]
y_range = [-11303, 11303]
y_axis_up = true
rotate_180 = true
origin_location = ["416mm", "297mm"]
final_pu_params = "-16068,11303"
info = "Paper should be loaded in portrait"