Skip to content

Instantly share code, notes, and snippets.

@bistory
Created April 6, 2023 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bistory/93b37bd8fdb4ede3d56c2923ae7315ca to your computer and use it in GitHub Desktop.
Save bistory/93b37bd8fdb4ede3d56c2923ae7315ca to your computer and use it in GitHub Desktop.
Installer le Portable Input Shaper sur Klipper
  1. Flash du Portable Input Shaper
cd ~/klipper
make menuconfig

Choisir Raspberry Pi RP2040

make
cp out/klipper.uf2 ~/printer_data/config/
  1. Installer les dépendances pour les calculs et graphiques
sudo apt update
sudo apt install python3-numpy python3-matplotlib libatlas-base-dev
~/klippy-env/bin/pip install -v numpy
  1. Générer et copier les graphiques vers le dossier config
~/klipper/scripts/calibrate_shaper.py /tmp/resonances_x_*.csv -o /tmp/shaper_calibrate_x.png
~/klipper/scripts/calibrate_shaper.py /tmp/resonances_y_*.csv -o /tmp/shaper_calibrate_y.png
cp /tmp/shaper_calibrate_* printer_data/config/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment