├── Accelerometer.cfg ├── KlipperScreen.macro.conf ├── README.md ├── START.cfg ├── advanced_macro.cfg ├── config ├── PRINTER_&_START_CONFIG_examples │ ├── BAMBULAB │ │ ├── A1 │ │ │ ├── END.gcode │ │ │ └── START.gcode │ │ └── X1C │ │ │ ├── END.gcode │ │ │ ├── START.gcode │ │ │ └── START_OSEQ_230x250.gcode │ ├── Bambulab Extension Board G-Code Referencee.md │ ├── PRESET_DEFAULT.cfg │ ├── Sapphire_PLUS_SP5_Creality_Sonic_Pad.cfg │ ├── Sapphire_PLUS_SP5_printer.cfg │ ├── Sapphire_PLUS_SP5_°ADV_macro.cfg │ ├── Sapphire_PLUS_SP5_°START.cfg │ ├── Sapphire_PRO_SP3_START.cfg │ ├── Sapphire_PRO_SP3_adv_macro.cfg │ ├── Sapphire_PRO_SP3_printer.cfg │ ├── Vivedino_Trodoon_V2_START.cfg │ ├── Vivedino_Troodon_V2_adv_macro.cfg │ ├── Vivedino_Troodon_V2_printer.cfg │ ├── Vivedino_klicky-probe.cfg │ ├── VzBot_330_Mellow_printer.cfg │ ├── VzBot_330_Mellow_°ADV_macro.cfg │ └── VzBot_330_Mellow_°START.cfg ├── accelerometer │ ├── accelerometer_query_boot.cfg │ ├── adxl345_RP2040.cfg │ ├── adxl345_RP2040_fysetc.cfg │ ├── adxl345_RP2040_mellow.cfg │ ├── adxl345_Raspberry.cfg │ ├── adxl345_mks-robin-nano-1.2_sdcard.cfg │ ├── adxl345_octopus_spi3.cfg │ ├── lis2dw_Cartographer.cfg │ ├── lis2dw_IDM.cfg │ └── motor_sync.cfg ├── backup │ └── README.MD ├── bed │ └── multy_bed_mesh.cfg ├── boards │ ├── btt-skrat-10 │ │ ├── 98-btt-skrat-10.rules │ │ ├── board-definition.json │ │ ├── compile.sh │ │ ├── config-3z.cfg │ │ ├── config.cfg │ │ ├── firmware.config │ │ ├── flash.sh │ │ ├── generic-bigtreetech-skrat-v1.0.cfg │ │ └── make-and-flash-mcu.sh │ ├── btt_pi2_scheme.md │ ├── mks-robin-nano-1.2 │ │ ├── buzzer.cfg │ │ └── config.cfg │ └── tvbox_temp.cfg ├── cutter │ └── filament_cutter.cfg ├── devices │ ├── mqtt_power_meter_moonraker.conf │ ├── power_home_assistant_moonraker.conf │ ├── power_mqtt_moonraker.conf │ ├── power_tasmota_moonraker.conf │ └── power_zigbee2mqtt_moonraker.conf ├── fans │ ├── RSCS.cfg │ ├── auxiliary_fan.cfg │ ├── auxiliary_fan_servo.cfg │ ├── exhaust.cfg │ ├── exhaust_p3.cfg │ ├── fan_host.cfg │ ├── fan_raspberry.cfg │ └── orca_fan_multiplier.cfg ├── home_assistant │ ├── automation_alexa_M117.yaml │ ├── automation_alexa_filament_runnout.yaml │ ├── automation_start_print.yaml │ ├── configuration_start_print.yaml │ ├── dashboard_camera.yaml │ ├── dashboard_guage_print_progress.yaml │ ├── dashboard_printer_buttons.yaml │ ├── dashboard_printer_commands.yaml │ ├── dashboard_start_print.yaml │ ├── dashboard_status.yaml │ ├── dashboard_temp_bed_graph.yaml │ ├── dashboard_temp_extruder_graph.yaml │ └── dashboard_temp_hardware_graph.yaml ├── kamp │ ├── Adaptive_Meshing.cfg │ ├── Adaptive_Meshing_Profile.cfg │ ├── Line_Purge.cfg │ ├── Smart_Park.cfg │ └── Voron_Purge.cfg ├── macros │ ├── Z_SAFE.cfg │ ├── beeper.cfg │ ├── beeper_start.cfg │ ├── center.cfg │ ├── clean.cfg │ ├── custom_bed_mesh.cfg │ ├── exclude_object.cfg │ ├── extruder.cfg │ ├── fake_homing.cfg │ ├── get_variables.cfg │ ├── homing_if_not.cfg │ ├── homing_override.cfg │ ├── mainsail_custom.cfg │ ├── mainsail_macro.cfg │ ├── mesh_screws.cfg │ ├── moonraker_obico_macros.cfg │ ├── nozzle_clean.cfg │ ├── pid_tuning.cfg │ ├── precise_homing.cfg │ ├── probe.cfg │ ├── save_pending.cfg │ ├── shape_tip_test.cfg │ ├── silent_mode.cfg │ ├── speed_test_corexy_no_homing.cfg │ ├── speed_test_delta.cfg │ ├── speet_test_corexy.cfg │ ├── tuning_tower.cfg │ └── wait_temp.cfg ├── mcu │ ├── Host_mcu.cfg │ ├── Host_temp.cfg │ ├── RP2040_RGB_LED.cfg │ ├── RP2040_temperature.cfg │ ├── Raspberry_mcu.cfg │ └── Raspberry_temp.cfg ├── neopixel │ ├── LED_effects_display_4_leds.cfg │ ├── LED_effects_stealthburner_barf.cfg │ ├── LED_strip.cfg │ ├── LED_strip_gpio.cfg │ ├── Neopixel_RP2040.cfg │ ├── Neopixel_led_progress.cfg │ ├── Neopixel_macro.cfg │ ├── Neopixel_mainsail.cfg │ ├── neopixel.cfg │ └── progress.cfg ├── output │ └── beeper.cfg ├── scripts │ ├── backup │ │ ├── printer.cfg-backup.cfg │ │ ├── printer.cfg-backup.sh │ │ └── printer.cfg-backup_clean.sh │ ├── cpu │ │ ├── LOG_CPU.sh │ │ ├── LOG_CPU_CLEAN.sh │ │ ├── LOG_CPU_START.sh │ │ ├── LOG_CPU_STOP.sh │ │ ├── cpu_log.cfg │ │ └── etc_systemd_system │ │ │ ├── log_cpu.service │ │ │ └── log_cpu.timer │ ├── input-shaping │ │ ├── generate-belt-tension-graph.sh │ │ ├── generate-shaper-graph-x.sh │ │ ├── generate-shaper-graph-y.sh │ │ ├── generate-shaper-graph.sh │ │ ├── input-shaping.cfg │ │ ├── shaper-graphs.cfg │ │ ├── show_graph_belts.sh │ │ ├── show_graph_x.sh │ │ ├── show_graph_y.sh │ │ └── show_graphs.cfg │ ├── klipperscreen │ │ ├── Klipperscreen.cfg │ │ ├── Klipperscreen_DISABLE.sh │ │ ├── Klipperscreen_ENABLE.sh │ │ ├── Klipperscreen_START.sh │ │ ├── Klipperscreen_STOP.sh │ │ ├── Klipperscreen_USB.sh │ │ └── Klipperscreen_WIFI.sh │ ├── logs │ │ ├── CPU │ │ │ └── CPU.txt │ │ └── klipper │ │ │ ├── LOGS_KLIPPER_CLEAN.sh │ │ │ └── klipper_logs_clean.cfg │ ├── moonraker │ │ └── obico │ │ │ ├── Obico_START.sh │ │ │ ├── Obico_STOP.sh │ │ │ └── obico.cfg │ ├── octoeverywhere │ │ ├── Octoeverywhere_START.sh │ │ ├── Octoeverywhere_STOP.sh │ │ └── octoeverywhere.cfg │ ├── power-loss-recovery │ │ ├── plr.sh │ │ ├── plr_z.sh │ │ └── power-loss-recovery.cfg │ ├── power │ │ ├── shutdown_host.cfg │ │ └── shutdown_host.sh │ ├── spoolman │ │ └── spoolman.cfg │ ├── start │ │ └── set_bed_to_sensor.cfg │ ├── timelapse │ │ ├── timelapse_clean.cfg │ │ ├── timelapse_clean.sh │ │ └── timelapse_custom.cfg │ ├── timeout │ │ ├── tasmota.sh │ │ ├── tasmota_power_on_off.cfg │ │ └── timeout.cfg │ ├── update │ │ └── klipper-configuration │ │ │ ├── klipper-configuration.cfg │ │ │ ├── klipper-configuration.sh │ │ │ └── klipper_configuration_update.sh │ ├── usb │ │ ├── USB_COPY.sh │ │ ├── USB_Check.sh │ │ ├── USB_KEY.sh │ │ ├── USB_MOUNT.sh │ │ ├── USB_UNMOUNT.sh │ │ └── usb.cfg │ ├── webcam │ │ ├── webcam-service.cfg │ │ ├── webcam_check.sh │ │ ├── webcam_start.sh │ │ └── webcam_stop.sh │ ├── welcome │ │ ├── welcome.cfg │ │ └── welcome.sh │ └── wifi │ │ ├── Change_WIFI.sh │ │ ├── Delete_WIFI.sh │ │ ├── Show_WIFI.sh │ │ └── wifi.cfg ├── sensors │ ├── filament_runout │ │ ├── FILAMENT_LOAD.cfg │ │ ├── FILAMENT_PURGE.cfg │ │ ├── FILAMENT_UNLOAD.cfg │ │ ├── advanced_filament_encoder.cfg │ │ ├── advanced_filament_encoder_debug.cfg │ │ ├── advanced_filament_macro.cfg │ │ ├── advanced_filament_sensor.cfg │ │ ├── advanced_switch_sensor.cfg │ │ ├── button_load.cfg │ │ ├── button_unload.cfg │ │ ├── debug_encoder.cfg │ │ ├── debug_sensor.cfg │ │ ├── filament_change.cfg │ │ ├── filament_encoder.cfg │ │ ├── filament_sensor.cfg │ │ ├── filament_z_safe.cfg │ │ ├── klipperscreen_custom_load_unload_filament.cfg │ │ ├── klipperscreen_load_unload_filament.cfg │ │ ├── orbiter_filament_macro.cfg │ │ ├── orbiter_pause.cfg │ │ ├── simple_load_unload.cfg │ │ ├── start_disable_sensors.cfg │ │ └── temp_save_restore.cfg │ └── probe │ │ ├── BTT_Eddy │ │ ├── BTT_Eddy_Adaptive_Meshing.cfg │ │ ├── BTT_Eddy_Klipper_Adaptive_Meshing.cfg │ │ ├── bigtreetech-eddy-coil.cfg │ │ ├── bigtreetech-eddy-homing.cfg │ │ ├── bigtreetech-eddy-zoffbeta.cfg │ │ └── bigtreetech-eddy.cfg │ │ ├── Carto │ │ └── Cartographer_touch.cfg │ │ ├── IDM │ │ ├── IDM.cfg │ │ ├── IDM_Adaptive_Meshing.cfg │ │ ├── IDM_BED_MESH_CALIBRATE.cfg │ │ ├── IDM_QUAD_GANTRY_LEVEL.cfg │ │ ├── IDM_Temp_compensation.cfg │ │ ├── IDM_Temp_compensation.sh │ │ ├── IDM_Z_TILT_ADJUST.cfg │ │ └── IDM_touch.cfg │ │ ├── beacon.cfg │ │ ├── bl-touch.cfg │ │ ├── klicky │ │ ├── G32.cfg │ │ ├── klicky-bed-mesh-calibrate.cfg │ │ ├── klicky-macros.cfg │ │ ├── klicky-probe.cfg │ │ ├── klicky-quad-gantry-level.cfg │ │ ├── klicky-screws-tilt-calculate.cfg │ │ ├── klicky-variables.cfg │ │ ├── klicky-z-tilt-adjust.cfg │ │ └── z_calibration.cfg │ │ ├── macro_probe.cfg │ │ ├── microprobe.cfg │ │ ├── microprobe │ │ └── microprobe.cfg │ │ └── probe.cfg └── servo │ ├── clean_brush_servo_360.cfg │ └── cutter.cfg ├── welcome.png └── z_backup_mainsail_macro.json /Accelerometer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/Accelerometer.cfg -------------------------------------------------------------------------------- /KlipperScreen.macro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/KlipperScreen.macro.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/README.md -------------------------------------------------------------------------------- /START.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/START.cfg -------------------------------------------------------------------------------- /advanced_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/advanced_macro.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/BAMBULAB/A1/END.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/BAMBULAB/A1/END.gcode -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/BAMBULAB/A1/START.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/BAMBULAB/A1/START.gcode -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/BAMBULAB/X1C/END.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/BAMBULAB/X1C/END.gcode -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/BAMBULAB/X1C/START.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/BAMBULAB/X1C/START.gcode -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/BAMBULAB/X1C/START_OSEQ_230x250.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/BAMBULAB/X1C/START_OSEQ_230x250.gcode -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Bambulab Extension Board G-Code Referencee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Bambulab Extension Board G-Code Referencee.md -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/PRESET_DEFAULT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/PRESET_DEFAULT.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_Creality_Sonic_Pad.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_Creality_Sonic_Pad.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_printer.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_°ADV_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_°ADV_macro.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_°START.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PLUS_SP5_°START.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PRO_SP3_START.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PRO_SP3_START.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PRO_SP3_adv_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PRO_SP3_adv_macro.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Sapphire_PRO_SP3_printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Sapphire_PRO_SP3_printer.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Vivedino_Trodoon_V2_START.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Vivedino_Trodoon_V2_START.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Vivedino_Troodon_V2_adv_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Vivedino_Troodon_V2_adv_macro.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Vivedino_Troodon_V2_printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Vivedino_Troodon_V2_printer.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/Vivedino_klicky-probe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/Vivedino_klicky-probe.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/VzBot_330_Mellow_printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/VzBot_330_Mellow_printer.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/VzBot_330_Mellow_°ADV_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/VzBot_330_Mellow_°ADV_macro.cfg -------------------------------------------------------------------------------- /config/PRINTER_&_START_CONFIG_examples/VzBot_330_Mellow_°START.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/PRINTER_&_START_CONFIG_examples/VzBot_330_Mellow_°START.cfg -------------------------------------------------------------------------------- /config/accelerometer/accelerometer_query_boot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/accelerometer_query_boot.cfg -------------------------------------------------------------------------------- /config/accelerometer/adxl345_RP2040.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/adxl345_RP2040.cfg -------------------------------------------------------------------------------- /config/accelerometer/adxl345_RP2040_fysetc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/adxl345_RP2040_fysetc.cfg -------------------------------------------------------------------------------- /config/accelerometer/adxl345_RP2040_mellow.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/adxl345_RP2040_mellow.cfg -------------------------------------------------------------------------------- /config/accelerometer/adxl345_Raspberry.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/adxl345_Raspberry.cfg -------------------------------------------------------------------------------- /config/accelerometer/adxl345_mks-robin-nano-1.2_sdcard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/adxl345_mks-robin-nano-1.2_sdcard.cfg -------------------------------------------------------------------------------- /config/accelerometer/adxl345_octopus_spi3.cfg: -------------------------------------------------------------------------------- 1 | [adxl345] 2 | cs_pin: PA15 3 | spi_bus: spi3 4 | -------------------------------------------------------------------------------- /config/accelerometer/lis2dw_Cartographer.cfg: -------------------------------------------------------------------------------- 1 | [lis2dw] 2 | cs_pin: scanner:PA3 3 | spi_bus: spi1 4 | -------------------------------------------------------------------------------- /config/accelerometer/lis2dw_IDM.cfg: -------------------------------------------------------------------------------- 1 | [lis2dw] 2 | cs_pin: idm:PA3 3 | spi_bus: spi1 4 | -------------------------------------------------------------------------------- /config/accelerometer/motor_sync.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/accelerometer/motor_sync.cfg -------------------------------------------------------------------------------- /config/backup/README.MD: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/bed/multy_bed_mesh.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/bed/multy_bed_mesh.cfg -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/98-btt-skrat-10.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/98-btt-skrat-10.rules -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/board-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/board-definition.json -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/compile.sh -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/config-3z.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/config-3z.cfg -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/config.cfg -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/firmware.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/firmware.config -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/flash.sh -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/generic-bigtreetech-skrat-v1.0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/generic-bigtreetech-skrat-v1.0.cfg -------------------------------------------------------------------------------- /config/boards/btt-skrat-10/make-and-flash-mcu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt-skrat-10/make-and-flash-mcu.sh -------------------------------------------------------------------------------- /config/boards/btt_pi2_scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/btt_pi2_scheme.md -------------------------------------------------------------------------------- /config/boards/mks-robin-nano-1.2/buzzer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/mks-robin-nano-1.2/buzzer.cfg -------------------------------------------------------------------------------- /config/boards/mks-robin-nano-1.2/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/mks-robin-nano-1.2/config.cfg -------------------------------------------------------------------------------- /config/boards/tvbox_temp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/boards/tvbox_temp.cfg -------------------------------------------------------------------------------- /config/cutter/filament_cutter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/cutter/filament_cutter.cfg -------------------------------------------------------------------------------- /config/devices/mqtt_power_meter_moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/devices/mqtt_power_meter_moonraker.conf -------------------------------------------------------------------------------- /config/devices/power_home_assistant_moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/devices/power_home_assistant_moonraker.conf -------------------------------------------------------------------------------- /config/devices/power_mqtt_moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/devices/power_mqtt_moonraker.conf -------------------------------------------------------------------------------- /config/devices/power_tasmota_moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/devices/power_tasmota_moonraker.conf -------------------------------------------------------------------------------- /config/devices/power_zigbee2mqtt_moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/devices/power_zigbee2mqtt_moonraker.conf -------------------------------------------------------------------------------- /config/fans/RSCS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/RSCS.cfg -------------------------------------------------------------------------------- /config/fans/auxiliary_fan.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/auxiliary_fan.cfg -------------------------------------------------------------------------------- /config/fans/auxiliary_fan_servo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/auxiliary_fan_servo.cfg -------------------------------------------------------------------------------- /config/fans/exhaust.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/exhaust.cfg -------------------------------------------------------------------------------- /config/fans/exhaust_p3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/exhaust_p3.cfg -------------------------------------------------------------------------------- /config/fans/fan_host.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/fan_host.cfg -------------------------------------------------------------------------------- /config/fans/fan_raspberry.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/fan_raspberry.cfg -------------------------------------------------------------------------------- /config/fans/orca_fan_multiplier.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/fans/orca_fan_multiplier.cfg -------------------------------------------------------------------------------- /config/home_assistant/automation_alexa_M117.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/automation_alexa_M117.yaml -------------------------------------------------------------------------------- /config/home_assistant/automation_alexa_filament_runnout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/automation_alexa_filament_runnout.yaml -------------------------------------------------------------------------------- /config/home_assistant/automation_start_print.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/automation_start_print.yaml -------------------------------------------------------------------------------- /config/home_assistant/configuration_start_print.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/configuration_start_print.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_camera.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_guage_print_progress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_guage_print_progress.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_printer_buttons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_printer_buttons.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_printer_commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_printer_commands.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_start_print.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_start_print.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_status.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_temp_bed_graph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_temp_bed_graph.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_temp_extruder_graph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_temp_extruder_graph.yaml -------------------------------------------------------------------------------- /config/home_assistant/dashboard_temp_hardware_graph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/home_assistant/dashboard_temp_hardware_graph.yaml -------------------------------------------------------------------------------- /config/kamp/Adaptive_Meshing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/kamp/Adaptive_Meshing.cfg -------------------------------------------------------------------------------- /config/kamp/Adaptive_Meshing_Profile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/kamp/Adaptive_Meshing_Profile.cfg -------------------------------------------------------------------------------- /config/kamp/Line_Purge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/kamp/Line_Purge.cfg -------------------------------------------------------------------------------- /config/kamp/Smart_Park.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/kamp/Smart_Park.cfg -------------------------------------------------------------------------------- /config/kamp/Voron_Purge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/kamp/Voron_Purge.cfg -------------------------------------------------------------------------------- /config/macros/Z_SAFE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/Z_SAFE.cfg -------------------------------------------------------------------------------- /config/macros/beeper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/beeper.cfg -------------------------------------------------------------------------------- /config/macros/beeper_start.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/beeper_start.cfg -------------------------------------------------------------------------------- /config/macros/center.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/center.cfg -------------------------------------------------------------------------------- /config/macros/clean.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/clean.cfg -------------------------------------------------------------------------------- /config/macros/custom_bed_mesh.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/custom_bed_mesh.cfg -------------------------------------------------------------------------------- /config/macros/exclude_object.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/exclude_object.cfg -------------------------------------------------------------------------------- /config/macros/extruder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/extruder.cfg -------------------------------------------------------------------------------- /config/macros/fake_homing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/fake_homing.cfg -------------------------------------------------------------------------------- /config/macros/get_variables.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/get_variables.cfg -------------------------------------------------------------------------------- /config/macros/homing_if_not.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/homing_if_not.cfg -------------------------------------------------------------------------------- /config/macros/homing_override.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/homing_override.cfg -------------------------------------------------------------------------------- /config/macros/mainsail_custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/mainsail_custom.cfg -------------------------------------------------------------------------------- /config/macros/mainsail_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/mainsail_macro.cfg -------------------------------------------------------------------------------- /config/macros/mesh_screws.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/mesh_screws.cfg -------------------------------------------------------------------------------- /config/macros/moonraker_obico_macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/moonraker_obico_macros.cfg -------------------------------------------------------------------------------- /config/macros/nozzle_clean.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/nozzle_clean.cfg -------------------------------------------------------------------------------- /config/macros/pid_tuning.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/pid_tuning.cfg -------------------------------------------------------------------------------- /config/macros/precise_homing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/precise_homing.cfg -------------------------------------------------------------------------------- /config/macros/probe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/probe.cfg -------------------------------------------------------------------------------- /config/macros/save_pending.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/save_pending.cfg -------------------------------------------------------------------------------- /config/macros/shape_tip_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/shape_tip_test.cfg -------------------------------------------------------------------------------- /config/macros/silent_mode.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/silent_mode.cfg -------------------------------------------------------------------------------- /config/macros/speed_test_corexy_no_homing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/speed_test_corexy_no_homing.cfg -------------------------------------------------------------------------------- /config/macros/speed_test_delta.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/speed_test_delta.cfg -------------------------------------------------------------------------------- /config/macros/speet_test_corexy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/speet_test_corexy.cfg -------------------------------------------------------------------------------- /config/macros/tuning_tower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/tuning_tower.cfg -------------------------------------------------------------------------------- /config/macros/wait_temp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/macros/wait_temp.cfg -------------------------------------------------------------------------------- /config/mcu/Host_mcu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/mcu/Host_mcu.cfg -------------------------------------------------------------------------------- /config/mcu/Host_temp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/mcu/Host_temp.cfg -------------------------------------------------------------------------------- /config/mcu/RP2040_RGB_LED.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/mcu/RP2040_RGB_LED.cfg -------------------------------------------------------------------------------- /config/mcu/RP2040_temperature.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/mcu/RP2040_temperature.cfg -------------------------------------------------------------------------------- /config/mcu/Raspberry_mcu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/mcu/Raspberry_mcu.cfg -------------------------------------------------------------------------------- /config/mcu/Raspberry_temp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/mcu/Raspberry_temp.cfg -------------------------------------------------------------------------------- /config/neopixel/LED_effects_display_4_leds.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/LED_effects_display_4_leds.cfg -------------------------------------------------------------------------------- /config/neopixel/LED_effects_stealthburner_barf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/LED_effects_stealthburner_barf.cfg -------------------------------------------------------------------------------- /config/neopixel/LED_strip.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/LED_strip.cfg -------------------------------------------------------------------------------- /config/neopixel/LED_strip_gpio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/LED_strip_gpio.cfg -------------------------------------------------------------------------------- /config/neopixel/Neopixel_RP2040.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/Neopixel_RP2040.cfg -------------------------------------------------------------------------------- /config/neopixel/Neopixel_led_progress.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/Neopixel_led_progress.cfg -------------------------------------------------------------------------------- /config/neopixel/Neopixel_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/Neopixel_macro.cfg -------------------------------------------------------------------------------- /config/neopixel/Neopixel_mainsail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/Neopixel_mainsail.cfg -------------------------------------------------------------------------------- /config/neopixel/neopixel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/neopixel.cfg -------------------------------------------------------------------------------- /config/neopixel/progress.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/neopixel/progress.cfg -------------------------------------------------------------------------------- /config/output/beeper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/output/beeper.cfg -------------------------------------------------------------------------------- /config/scripts/backup/printer.cfg-backup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/backup/printer.cfg-backup.cfg -------------------------------------------------------------------------------- /config/scripts/backup/printer.cfg-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/backup/printer.cfg-backup.sh -------------------------------------------------------------------------------- /config/scripts/backup/printer.cfg-backup_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/backup/printer.cfg-backup_clean.sh -------------------------------------------------------------------------------- /config/scripts/cpu/LOG_CPU.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/cpu/LOG_CPU.sh -------------------------------------------------------------------------------- /config/scripts/cpu/LOG_CPU_CLEAN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/cpu/LOG_CPU_CLEAN.sh -------------------------------------------------------------------------------- /config/scripts/cpu/LOG_CPU_START.sh: -------------------------------------------------------------------------------- 1 | echo "$1" | sudo -S systemctl start log_cpu.timer 2 | -------------------------------------------------------------------------------- /config/scripts/cpu/LOG_CPU_STOP.sh: -------------------------------------------------------------------------------- 1 | echo "$1" | sudo -S systemctl stop log_cpu.timer 2 | -------------------------------------------------------------------------------- /config/scripts/cpu/cpu_log.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/cpu/cpu_log.cfg -------------------------------------------------------------------------------- /config/scripts/cpu/etc_systemd_system/log_cpu.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/cpu/etc_systemd_system/log_cpu.service -------------------------------------------------------------------------------- /config/scripts/cpu/etc_systemd_system/log_cpu.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/cpu/etc_systemd_system/log_cpu.timer -------------------------------------------------------------------------------- /config/scripts/input-shaping/generate-belt-tension-graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/generate-belt-tension-graph.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/generate-shaper-graph-x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/generate-shaper-graph-x.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/generate-shaper-graph-y.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/generate-shaper-graph-y.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/generate-shaper-graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/generate-shaper-graph.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/input-shaping.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/input-shaping.cfg -------------------------------------------------------------------------------- /config/scripts/input-shaping/shaper-graphs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/shaper-graphs.cfg -------------------------------------------------------------------------------- /config/scripts/input-shaping/show_graph_belts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/show_graph_belts.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/show_graph_x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/show_graph_x.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/show_graph_y.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/show_graph_y.sh -------------------------------------------------------------------------------- /config/scripts/input-shaping/show_graphs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/input-shaping/show_graphs.cfg -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/klipperscreen/Klipperscreen.cfg -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen_DISABLE.sh: -------------------------------------------------------------------------------- 1 | echo "$1" | sudo -S systemctl disable KlipperScreen 2 | -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen_ENABLE.sh: -------------------------------------------------------------------------------- 1 | echo "$1" | sudo -S systemctl enable KlipperScreen 2 | -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen_START.sh: -------------------------------------------------------------------------------- 1 | echo "$1" | sudo -S systemctl start KlipperScreen 2 | -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen_STOP.sh: -------------------------------------------------------------------------------- 1 | echo "$1" | sudo -S systemctl stop KlipperScreen 2 | -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen_USB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/klipperscreen/Klipperscreen_USB.sh -------------------------------------------------------------------------------- /config/scripts/klipperscreen/Klipperscreen_WIFI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/klipperscreen/Klipperscreen_WIFI.sh -------------------------------------------------------------------------------- /config/scripts/logs/CPU/CPU.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/scripts/logs/klipper/LOGS_KLIPPER_CLEAN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/logs/klipper/LOGS_KLIPPER_CLEAN.sh -------------------------------------------------------------------------------- /config/scripts/logs/klipper/klipper_logs_clean.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/logs/klipper/klipper_logs_clean.cfg -------------------------------------------------------------------------------- /config/scripts/moonraker/obico/Obico_START.sh: -------------------------------------------------------------------------------- 1 | service moonraker-obico start 2 | -------------------------------------------------------------------------------- /config/scripts/moonraker/obico/Obico_STOP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/moonraker/obico/Obico_STOP.sh -------------------------------------------------------------------------------- /config/scripts/moonraker/obico/obico.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/moonraker/obico/obico.cfg -------------------------------------------------------------------------------- /config/scripts/octoeverywhere/Octoeverywhere_START.sh: -------------------------------------------------------------------------------- 1 | service octoeverywhere start 2 | -------------------------------------------------------------------------------- /config/scripts/octoeverywhere/Octoeverywhere_STOP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/octoeverywhere/Octoeverywhere_STOP.sh -------------------------------------------------------------------------------- /config/scripts/octoeverywhere/octoeverywhere.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/octoeverywhere/octoeverywhere.cfg -------------------------------------------------------------------------------- /config/scripts/power-loss-recovery/plr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/power-loss-recovery/plr.sh -------------------------------------------------------------------------------- /config/scripts/power-loss-recovery/plr_z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/power-loss-recovery/plr_z.sh -------------------------------------------------------------------------------- /config/scripts/power-loss-recovery/power-loss-recovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/power-loss-recovery/power-loss-recovery.cfg -------------------------------------------------------------------------------- /config/scripts/power/shutdown_host.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/power/shutdown_host.cfg -------------------------------------------------------------------------------- /config/scripts/power/shutdown_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/power/shutdown_host.sh -------------------------------------------------------------------------------- /config/scripts/spoolman/spoolman.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/spoolman/spoolman.cfg -------------------------------------------------------------------------------- /config/scripts/start/set_bed_to_sensor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/start/set_bed_to_sensor.cfg -------------------------------------------------------------------------------- /config/scripts/timelapse/timelapse_clean.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/timelapse/timelapse_clean.cfg -------------------------------------------------------------------------------- /config/scripts/timelapse/timelapse_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/timelapse/timelapse_clean.sh -------------------------------------------------------------------------------- /config/scripts/timelapse/timelapse_custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/timelapse/timelapse_custom.cfg -------------------------------------------------------------------------------- /config/scripts/timeout/tasmota.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | curl http://192.168.0.115/cm?cmnd=Power2%20ON 3 | -------------------------------------------------------------------------------- /config/scripts/timeout/tasmota_power_on_off.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/timeout/tasmota_power_on_off.cfg -------------------------------------------------------------------------------- /config/scripts/timeout/timeout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/timeout/timeout.cfg -------------------------------------------------------------------------------- /config/scripts/update/klipper-configuration/klipper-configuration.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/update/klipper-configuration/klipper-configuration.cfg -------------------------------------------------------------------------------- /config/scripts/update/klipper-configuration/klipper-configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/update/klipper-configuration/klipper-configuration.sh -------------------------------------------------------------------------------- /config/scripts/update/klipper-configuration/klipper_configuration_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/update/klipper-configuration/klipper_configuration_update.sh -------------------------------------------------------------------------------- /config/scripts/usb/USB_COPY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/usb/USB_COPY.sh -------------------------------------------------------------------------------- /config/scripts/usb/USB_Check.sh: -------------------------------------------------------------------------------- 1 | ls /dev/serial/by-id/* 2 | -------------------------------------------------------------------------------- /config/scripts/usb/USB_KEY.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo Partitions on USB: 3 | fdisk -l | grep -oE '/dev/sd[a-z][0-9]+' 4 | -------------------------------------------------------------------------------- /config/scripts/usb/USB_MOUNT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/usb/USB_MOUNT.sh -------------------------------------------------------------------------------- /config/scripts/usb/USB_UNMOUNT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/usb/USB_UNMOUNT.sh -------------------------------------------------------------------------------- /config/scripts/usb/usb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/usb/usb.cfg -------------------------------------------------------------------------------- /config/scripts/webcam/webcam-service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/webcam/webcam-service.cfg -------------------------------------------------------------------------------- /config/scripts/webcam/webcam_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/webcam/webcam_check.sh -------------------------------------------------------------------------------- /config/scripts/webcam/webcam_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/webcam/webcam_start.sh -------------------------------------------------------------------------------- /config/scripts/webcam/webcam_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/webcam/webcam_stop.sh -------------------------------------------------------------------------------- /config/scripts/welcome/welcome.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/welcome/welcome.cfg -------------------------------------------------------------------------------- /config/scripts/welcome/welcome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/welcome/welcome.sh -------------------------------------------------------------------------------- /config/scripts/wifi/Change_WIFI.sh: -------------------------------------------------------------------------------- 1 | nmcli dev wifi connect ${1} password ${2} 2 | -------------------------------------------------------------------------------- /config/scripts/wifi/Delete_WIFI.sh: -------------------------------------------------------------------------------- 1 | nmcli connection delete ${1} 2 | -------------------------------------------------------------------------------- /config/scripts/wifi/Show_WIFI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/wifi/Show_WIFI.sh -------------------------------------------------------------------------------- /config/scripts/wifi/wifi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/scripts/wifi/wifi.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/FILAMENT_LOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/FILAMENT_LOAD.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/FILAMENT_PURGE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/FILAMENT_PURGE.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/FILAMENT_UNLOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/FILAMENT_UNLOAD.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/advanced_filament_encoder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/advanced_filament_encoder.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/advanced_filament_encoder_debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/advanced_filament_encoder_debug.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/advanced_filament_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/advanced_filament_macro.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/advanced_filament_sensor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/advanced_filament_sensor.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/advanced_switch_sensor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/advanced_switch_sensor.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/button_load.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/button_load.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/button_unload.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/button_unload.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/debug_encoder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/debug_encoder.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/debug_sensor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/debug_sensor.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/filament_change.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/filament_change.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/filament_encoder.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/filament_encoder.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/filament_sensor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/filament_sensor.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/filament_z_safe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/filament_z_safe.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/klipperscreen_custom_load_unload_filament.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/klipperscreen_custom_load_unload_filament.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/klipperscreen_load_unload_filament.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/klipperscreen_load_unload_filament.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/orbiter_filament_macro.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/orbiter_filament_macro.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/orbiter_pause.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/orbiter_pause.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/simple_load_unload.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/simple_load_unload.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/start_disable_sensors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/start_disable_sensors.cfg -------------------------------------------------------------------------------- /config/sensors/filament_runout/temp_save_restore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/filament_runout/temp_save_restore.cfg -------------------------------------------------------------------------------- /config/sensors/probe/BTT_Eddy/BTT_Eddy_Adaptive_Meshing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/BTT_Eddy/BTT_Eddy_Adaptive_Meshing.cfg -------------------------------------------------------------------------------- /config/sensors/probe/BTT_Eddy/BTT_Eddy_Klipper_Adaptive_Meshing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/BTT_Eddy/BTT_Eddy_Klipper_Adaptive_Meshing.cfg -------------------------------------------------------------------------------- /config/sensors/probe/BTT_Eddy/bigtreetech-eddy-coil.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/BTT_Eddy/bigtreetech-eddy-coil.cfg -------------------------------------------------------------------------------- /config/sensors/probe/BTT_Eddy/bigtreetech-eddy-homing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/BTT_Eddy/bigtreetech-eddy-homing.cfg -------------------------------------------------------------------------------- /config/sensors/probe/BTT_Eddy/bigtreetech-eddy-zoffbeta.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/BTT_Eddy/bigtreetech-eddy-zoffbeta.cfg -------------------------------------------------------------------------------- /config/sensors/probe/BTT_Eddy/bigtreetech-eddy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/BTT_Eddy/bigtreetech-eddy.cfg -------------------------------------------------------------------------------- /config/sensors/probe/Carto/Cartographer_touch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/Carto/Cartographer_touch.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_Adaptive_Meshing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_Adaptive_Meshing.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_BED_MESH_CALIBRATE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_BED_MESH_CALIBRATE.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_QUAD_GANTRY_LEVEL.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_QUAD_GANTRY_LEVEL.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_Temp_compensation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_Temp_compensation.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_Temp_compensation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_Temp_compensation.sh -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_Z_TILT_ADJUST.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_Z_TILT_ADJUST.cfg -------------------------------------------------------------------------------- /config/sensors/probe/IDM/IDM_touch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/IDM/IDM_touch.cfg -------------------------------------------------------------------------------- /config/sensors/probe/beacon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/beacon.cfg -------------------------------------------------------------------------------- /config/sensors/probe/bl-touch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/bl-touch.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/G32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/G32.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-bed-mesh-calibrate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-bed-mesh-calibrate.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-macros.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-probe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-probe.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-quad-gantry-level.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-quad-gantry-level.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-screws-tilt-calculate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-screws-tilt-calculate.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-variables.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-variables.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/klicky-z-tilt-adjust.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/klicky-z-tilt-adjust.cfg -------------------------------------------------------------------------------- /config/sensors/probe/klicky/z_calibration.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/klicky/z_calibration.cfg -------------------------------------------------------------------------------- /config/sensors/probe/macro_probe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/macro_probe.cfg -------------------------------------------------------------------------------- /config/sensors/probe/microprobe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/microprobe.cfg -------------------------------------------------------------------------------- /config/sensors/probe/microprobe/microprobe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/microprobe/microprobe.cfg -------------------------------------------------------------------------------- /config/sensors/probe/probe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/sensors/probe/probe.cfg -------------------------------------------------------------------------------- /config/servo/clean_brush_servo_360.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/servo/clean_brush_servo_360.cfg -------------------------------------------------------------------------------- /config/servo/cutter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/config/servo/cutter.cfg -------------------------------------------------------------------------------- /welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/welcome.png -------------------------------------------------------------------------------- /z_backup_mainsail_macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Travis90x/Klipper-configuration/HEAD/z_backup_mainsail_macro.json --------------------------------------------------------------------------------