Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ switch_to_stock_cmd: /usr/bin/switch-to-oc-patched
support_zip_cmd:

[fan "fan"]
display_name: Toolhead
display_name: Part_Cooling

[fan "fan_generic model_helper_fan"]
display_name: Model Helper
[fan "fan_generic aux_fan"]
display_name: Aux_Cooling

[fan "fan_generic box_fan"]
display_name: Chamber
[fan "fan_generic case_fan"]
display_name: Case_Exhaust

[led "led hotend"]
display_name: Toolhead
display_name: Led_Hotend
pwm: true

[led "led case"]
display_name: Case
display_name: Led_Case
pwm: true

[monitored_sensor "extruder"]
Expand All @@ -54,7 +54,7 @@ display_name: Bed
color: purple
controllable: true

[monitored_sensor "temperature_sensor box"]
[monitored_sensor "temperature_sensor chamber"]
display_name: Chamber
color: blue
controllable: true
controllable: false
4 changes: 2 additions & 2 deletions meta-opencentauri/recipes-apps/klipper/files/calibration.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ gcode:
SET_DISPLAY_TEXT MSG="Performing extruder PID calibration"
MOVE_TO_TRAY
PID_CALIBRATE HEATER=extruder TARGET={hotend_temperature}
M729
CLEAN_NOZZLE
M400

SET_DISPLAY_TEXT MSG="Performing probe z-offset & bed mesh calibration"
G90
G1 X128 Y128 F6000
BED_MESH_CALIBRATE_WITH_WIPE BED_TEMP={bed_temperature}
BED_MESH_CALIBRATE BED_TEMP={bed_temperature}

SET_DISPLAY_TEXT MSG="Performing shaper calibration"
RUN_SHELL_COMMAND CMD=CAMERA_STOP
Expand Down
351 changes: 351 additions & 0 deletions meta-opencentauri/recipes-apps/klipper/files/kamp.cfg

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions meta-opencentauri/recipes-apps/klipper/files/klipper-init-d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ KLIPPER_PRINTER_CONFIG="/etc/klipper/config/printer.cfg"
KLIPPY_ARGS="-O /usr/share/klipper/klippy/klippy.py $KLIPPER_PRINTER_CONFIG -l /board-resource/klippy.log -a /run/klippy.sock"
PIDFILE="/var/run/klipper.pid"
KLIPPER_VAR_CONFIG_BUILDER="/usr/bin/build-klipper-var-config"
KLIPPER_CONFIG_VERSION="0.0.6"
KLIPPER_CONFIG_VERSION="0.0.7"
KLIPPER_CONFIG_VERSION_FILE="/etc/klipper-config.ver"
KLIPPER_CONFIG_BACKUP_DIR="/etc/klipper/config/config_backups"

Expand All @@ -23,7 +23,7 @@ ensure_klipper_config_version() {
if [ -f "$KLIPPER_CONFIG_VERSION_FILE" ]; then
current_version="$(tr -d '[:space:]' < "$KLIPPER_CONFIG_VERSION_FILE" 2>/dev/null)"
else
current_version="$KLIPPER_CONFIG_VERSION"
current_version="" #reset configs
echo "$current_version" > "$KLIPPER_CONFIG_VERSION_FILE" || return 1
fi

Expand Down
Loading
Loading