From 50f05cd151dcaf9716ac200a0d12ceeb76f6a18b Mon Sep 17 00:00:00 2001 From: mattmcw Date: Tue, 16 Mar 2021 19:39:20 -0400 Subject: [PATCH] Add the axicli wrapper script I use to control my plotter for most drawings --- ax.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ax.sh diff --git a/ax.sh b/ax.sh new file mode 100644 index 0000000..629fc53 --- /dev/null +++ b/ax.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#wrapper script for controlling my RobotHouse A3 plotter with +#the AxiDraw CLI : https://axidraw.com/doc/cli_api/ +#use the config from this repo and place this script in your path +#chmod +x and all that +#I just call it "ax" + +axicli -f ./axidraw_conf_robothouse_a3.py \ + --report_time \ + --model 2 \ + --pen_pos_up 20 \ + --pen_pos_down 60 \ + "${@}" \ No newline at end of file