From 9d5c50dbac28fca3ea0db0b8ac6bf80f90e8cb73 Mon Sep 17 00:00:00 2001 From: Elouin Date: Wed, 27 Aug 2025 14:28:42 +0000 Subject: [PATCH] docs: update 3D-Drucker/artillery --- 3D-Drucker/artillery.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 3D-Drucker/artillery.md diff --git a/3D-Drucker/artillery.md b/3D-Drucker/artillery.md new file mode 100644 index 0000000..ce117e0 --- /dev/null +++ b/3D-Drucker/artillery.md @@ -0,0 +1,41 @@ +--- +title: artillery +description: Ein bisschen Info für die Artillery Drucker +published: 1 +date: 2025-08-27T14:28:40.664Z +tags: +editor: markdown +dateCreated: 2025-08-26T21:11:14.673Z +--- + +# Artillery Drucker + +## Genius + +### Handbuch + +Fast alle offizielle [Links](https://de.artillery3d.com/pages/d?shpxid=ec199476-3349-412c-bcb6-d74189b8ddf8) sind tot. Einen alternativen Download gibt es bei [manualslib](https://www.manualslib.com/download/1884137/Artillery-Genius.html). + +### Installation + +#### Deine Machine^TM^ + +``` +git clone https://github.com/Klipper3d/klipper + +# handle printer config first to avoid klipper service restarts +# https://www.klipper3d.org/Installation.html#configuring-klipper +cp config/printer-artillery-genius-pro-2022.cfg ~/printer.cfg +SERIAL_ID=$(ls /dev/serial/by-id/) +sed -i 's|serial: /dev/serial/by-id/usb-Klipper_stm32f401xc_|serial: /dev/serial/by-id/$SERIAL_ID|g' ~/printer.cfg + +INSTALL_SCRIPT=klipper/scripts/install-octopi.sh +sed -i 's/python2/python3/g' $INSTALL_SCRIPT +sed -i 's/python-dev/python3-dev/g' $INSTALL_SCRIPT +bash $INSTALL_SCRIPT + +uv add OctoPrint # or pip install +uv run octoprint serve +# visit http://0.0.0.0:5000 and do remaining steps +# https://www.klipper3d.org/OctoPrint.html#configuring-octoprint-to-use-klipper +```