Add calibration include to user_settings.cfg

- Added [include calibration/*.cfg] to optimized_user_settings.cfg
- Updated CHANGES.md with complete deployment steps
- Updated calibration/README.md with installation options

Now the calibration macros are automatically available when using
the optimized user_settings.cfg - no manual include needed!
This commit is contained in:
root 2026-03-12 13:48:06 +00:00
parent 3c40c660cf
commit f05f64c3b2
3 changed files with 66 additions and 9 deletions

View file

@ -2,10 +2,43 @@
## Installation
1. Copy all `.cfg` files to your Klipper config directory
2. Add `[include calibration/*.cfg]` to your `printer.cfg`
3. Restart Klipper
4. Run `CALIBRATION_MENU` to start
### Option A: Via user_settings.cfg (Recommended)
1. **Clone repo to config directory:**
```bash
cd ~/printer_data/config
git clone https://git.sky-net.it/nocci/open4neptune-new.git
```
2. **Copy calibration folder:**
```bash
cp -r open4neptune-new/calibration/ ~/printer_data/config/
```
3. **The include is already in optimized_user_settings.cfg:**
```ini
[include calibration/*.cfg]
```
4. **Restart Klipper**
### Option B: Direct include in printer.cfg
1. **Copy calibration folder** to `~/printer_data/config/calibration/`
2. **Add to printer.cfg** (at the end, after other includes):
```ini
[include calibration/*.cfg]
```
3. **Restart Klipper**
### Test Installation
```gcode
; In Mainsail/Fluidd Console:
CALIBRATION_MENU
```
---