I just installed Staubgeborener's Klipper Back Up Script (https://github.com/Staubgeborener/klipper-backup/). Everything seemed to be going fine, right up until I installed G-Code Shell Command Extension via Kiauh. As soon as I did that, I was faced with this error in Klipper:
Klipper reports: ERROR
Option 'control' in section 'heater_bed' must be specified
Once the underlying issue is corrected, use the "RESTART"
command to reload the config and restart the host software.
Printer is halted
Except nothing was changed in my heater_bed section (which was working this morning). Right now, my heater bed code looks like this:
#####################################################################
# Bed Heater
#####################################################################
[heater_bed]
## SSR Pin - HEATBED
## Thermistor - TH1
heater_pin: PG11
sensor_type: ATC Semitec 104NT-4-R025H42G
sensor_pin: PA2
pullup_resistor: 2200
## Adjust Max Power so your heater doesn't warp your bed. Rule of thumb is 0.4 watts / cm^2 .
max_power: 0.7
min_temp: 0
max_temp: 120
#control: pid
#pid_kp: 58.437
#pid_ki: 2.347
#pid_kd: 363.769
And if I go and uncomment control: pid, I just get another error to go go "define" (uncomment) pid_kp, then pid_ki, pid_kd. Just to experiment, I went down the line until it started complaining about the Z-offset being undefined, which sent up even more alarm bells for me, since I use Tap. So that is when I undid all my uncomments, and re-commented everything back in.