Monorepo for Aesthetic.Computer aesthetic.computer
at main 24 lines 672 B view raw view rendered
1# Plotters 2 3Helper Fish shell functions for controlling an AxiDraw via `axicli`. 4 5Place each `.fish` file in `~/.config/fish/functions/` or `source` them in your `~/.config/fish/config.fish` to make the commands available in your shell. 6 7## Commands 8- `axihome` – move to home 9- `axipenup` – raise pen 10- `axipendown` – lower pen 11- `axienable` – enable XY motors 12- `axidisable` – disable XY motors 13- `axicycle` – run the AxiDraw demo cycle 14- `axiplot file.svg [axicli args...]` – plot a file with optional extra `axicli` arguments 15 16## Examples 17``` 18axihome 19axipenup 20axipendown 21axicycle 22axiplot drawing.svg 23axiplot drawing.svg --speed_pendown 40 --accel 60 24```