You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* klipper: clean up tools stage
* remove redundant copy statements
* add requirements file for tools stage
* set path to use venv by default
* remove calibrate-shaper and rename make
* add symlink for klippy-env
* update docs
* docs: update changelog
docker compose -f $(pwd)/docker-compose.extra.tools.yaml run --rm tools "\$@"
51
+
EOF
52
+
```
53
+
43
54
Unless otherwise specified, all commands mentioned in the documentation should be run from the root of the repository.
44
55
45
56
### Build the MCU Code
46
57
Before using Klipper, you'll have to build and flash the microcontroller-code for your printers mainboard.
47
-
As this can be accomplished via docker, we can create an alias that replaces `make` with the appropriate docker compose command. After setting this alias, follow the Instructions on finding your printer, building and flashing the microcontroller found in the [Klipper Docs](https://www.klipper3d.org/Installation.html#building-and-flashing-the-micro-controller).
58
+
This can be done in a container by calling the build commands via `prind-tools`.
59
+
Follow the Instructions on finding your printer, building and flashing the microcontroller found in the [Klipper Docs](https://www.klipper3d.org/Installation.html#building-and-flashing-the-micro-controller).
48
60
49
61
Adapted from the official Docs, a generic Build would look like this.
If your Board can be flashed via SD-Card, you may want to omit `make flash` and retrieve the `klipper.bin` from the `out` directory that is created by `make`. Follow your boards instructions on how to proceed with flashing via SD-Card.
74
+
If no official flash method is available, you can retrieve the `klipper.bin` from the `out` directory that is created by `make` and Follow your boards instructions on how to proceed with flashing.
59
75
60
76
### Add your Configuration to docker-compose.override.yaml
61
77
Locate the `webcam` Service within `docker-compose.override.yaml` and update the `device` Section with the Device Name of your Webcam.
`docker-compose.extra.calibrate-shaper.yaml` is set up to run `calibrate_shaper.py`, so any options supported by the script can also be used with the container.
283
-
Set an alias to save yourself from typing the the docker compose command multiple times. The generated Images are located besides the csv files in `./resonances`
298
+
To analyze the generated files, call `calibrate_shaper.py` via `prind-tools`
284
299
```
285
-
alias calibrate_shaper="docker compose -f docker-compose.extra.calibrate-shaper.yaml run --rm calibrate_shaper"
0 commit comments