62 lines
2.3 KiB
INI
62 lines
2.3 KiB
INI
[gcode_macro ECHO_RATOS_VARS]
|
|
description: Echo RatOS variables to the console.
|
|
gcode:
|
|
{% for var, value in printer["gcode_macro RatOS"].items() %}
|
|
{action_respond_info(var ~ ": " ~ value)}
|
|
{% endfor %}
|
|
|
|
[gcode_macro RatOS]
|
|
description: RatOS variable storage macro, will echo variables to the console when run.
|
|
# Configuration Defaults
|
|
# This is only here to make the config backwards compatible.
|
|
# Configuration should exclusively happen in printer.cfg.
|
|
variable_relative_extrusion: False #?
|
|
variable_force_absolute_position: False # зачем оно ващпе
|
|
variable_preheat_extruder: True
|
|
variable_preheat_extruder_temp: 150
|
|
variable_calibrate_bed_mesh: True
|
|
variable_adaptive_mesh: True
|
|
variable_nozzle_priming: "primeblob"
|
|
variable_nozzle_prime_start_x: "max" # min, max or number
|
|
variable_nozzle_prime_start_y: "min" # min, max or number
|
|
variable_nozzle_prime_direction: "auto" # auto, forwards, backwards
|
|
variable_nozzle_prime_bridge_fan: 102 # что это за попугаи
|
|
variable_filament_unload_length: 130
|
|
variable_filament_unload_speed: 5
|
|
variable_filament_load_length: 100
|
|
variable_filament_load_speed: 10
|
|
variable_filament_load_second_length: 100
|
|
variable_filament_load_second_speed: 10
|
|
variable_start_print_park_in: "back"
|
|
variable_start_print_park_z_height: 50
|
|
variable_start_print_heat_chamber_bed_temp: 115 #надо бы попробовать
|
|
variable_end_print_park_in: "back"
|
|
variable_end_print_park_x: 380
|
|
variable_pause_print_park_in: "front"
|
|
variable_pause_print_park_x: 20
|
|
variable_macro_travel_speed: 150
|
|
variable_macro_z_speed: 15
|
|
variable_end_print_park_z_hop: 20
|
|
# Possible values: 'sensorless' or 'endstops'.
|
|
variable_homing: "endstops"
|
|
variable_sensorless_x_current: 0.6
|
|
variable_sensorless_y_current: 0.9
|
|
# Possible Values: 'middle' or an absolute x coordinate
|
|
variable_safe_home_x: "middle"
|
|
# Possible Values: 'middle' or an absolute y coordinate
|
|
variable_safe_home_y: "middle"
|
|
variable_stowable_probe_stop_on_error: False #?
|
|
variable_driver_type_x: "tmc5160"
|
|
variable_driver_type_y: "tmc5160"
|
|
variable_high_power_bed: False
|
|
variable_z_tilt_enabled: False
|
|
variable_beep_enabled: False
|
|
variable_filament_encoder_enabled: False
|
|
variable_touch_cart_enabled: True
|
|
variable_awd_sync_enabled: True
|
|
variable_tgbot_enabled: True
|
|
variable_probe_for_priming_result: None
|
|
variable_adaptive_prime_offset_threshold: -1.0
|
|
gcode:
|
|
ECHO_RATOS_VARS
|