From e6d6f867694a463471e0a0c0ba3635cd668511ed Mon Sep 17 00:00:00 2001 From: Antoine Beyeler <49431240+abey79@users.noreply.github.com> Date: Mon, 14 Mar 2022 09:39:36 +0100 Subject: [PATCH 1/2] Added configs for the Calcomp Artisan plotter Thanks to Andee Collard and @ithinkido --- vpype/vpype_config.toml | 54 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/vpype/vpype_config.toml b/vpype/vpype_config.toml index b9e43f62..743cb5f0 100644 --- a/vpype/vpype_config.toml +++ b/vpype/vpype_config.toml @@ -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" From f60278b511d6912732de36bc92d43aa7454dd09f Mon Sep 17 00:00:00 2001 From: Antoine Beyeler Date: Fri, 25 Mar 2022 15:27:04 +0100 Subject: [PATCH 2/2] updated CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dca514f1..c799b62d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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