Guest User

Untitled

a guest
May 9th, 2022
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 26.50 KB | None | 0 0
  1. Starting Klippy...
  2. Args: ['/home/pi/klipper/klippy/klippy.py', '/home/pi/klipper_config/printer.cfg', '-l', '/home/pi/klipper_logs/klippy.log', '-a', '/tmp/klippy_uds']
  3. Git version: 'v0.10.0-398-gc263f76f-dirty'
  4. CPU: 4 core ARMv7 Processor rev 3 (v7l)
  5. Python: '2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]'
  6. Start printer at Mon May  9 21:30:05 2022 (1652124605.4 21.5)
  7. ===== Config file =====
  8. [gcode_macro G29]
  9. description = Create bed mesh
  10. gcode =
  11.     BED_MESH_CLEAR
  12.     G28
  13.     BED_MESH_CALIBRATE
  14.     BED_MESH_PROFILE SAVE=default_mesh
  15.  
  16. [gcode_macro M420]
  17. description = Load bed mesh
  18. gcode =
  19.     BED_MESH_PROFILE LOAD=default_mesh
  20.  
  21. [gcode_macro G35]
  22. description = Probe bed level
  23. gcode =
  24.     G28
  25.     SCREWS_TILT_CALCULATE
  26.  
  27. [gcode_macro PRINT_START]
  28. gcode =
  29.     START_PRINT
  30.  
  31. [gcode_macro PRINT_END]
  32. gcode =
  33.     END_PRINT
  34.  
  35. [gcode_macro START_PRINT]
  36. gcode =
  37.     {% set t_extruder = params.T_EXTRUDER|default(0)|float %}
  38.     {% set t_bed = params.T_BED|default(0)|float %}
  39.     {% set MATERIAL = params.MATERIAL|default('NIX') %}
  40.     PRESSURE_ADV_MATERIAL MATERIAL={MATERIAL}
  41.     M190 S{t_bed}                                                                  ; Wait for Heat Bed temperature
  42.     M104 S{t_extruder/4}
  43.     LEDON
  44.     G28                                                                            ; home all axes
  45.     LOAD_MESH_TEMP T_BED={t_bed}                                                   ; Loads Mesh/Creates new one ; FORCE=1 forces new mesh
  46.     M104 S{t_extruder/2}
  47.     G92 E0                                                                         ; reset extruder
  48.     G1 X2 Y2 Z20 F5000.0                                                           ; move to start-line position
  49.     M104 S{t_extruder}                                                             ; set extruder temp
  50.     TEMPERATURE_WAIT SENSOR=extruder MINIMUM={t_extruder} MAXIMUM={t_extruder+5}   ; wait for temp reached
  51.     G1 X2 Y10 Z0.3 F400.0                                                          ; move to start-line heighth
  52.     G1 X2 Y200.0 Z0.3 F1500.0 E15                                                  ; draw 1st line
  53.     G1 X2 Y200.0 Z0.4 F5000.0                                                      ; move up a little
  54.     G1 X2 Y30 Z0.4 F1500.0 E30                                                     ; draw 2nd line
  55.     G92 E0                                                                         ; reset extruder
  56.     G1 X5 Z3.0 F3000 E-1                                                           ; move z up little to prevent scratching of surface
  57.  
  58. [gcode_macro END_PRINT]
  59. gcode =
  60.     G91                                                                           ; relative positioning
  61.     G1 Z5.0 F3000 E-1.5                                                             ; move z up little to prevent scratching of print
  62.     G90                                                                           ; absolute positioning
  63.     G1 X0 Y200 F1000                                                              ; prepare for part removal
  64.     TURN_OFF_HEATERS                                                              ; Turn off heaters
  65.     G1 X0 Y300 F1000                                                              ; prepare for part removal
  66.     LEDOFF
  67.     M84                                                                           ; disable motors
  68.     M106 S0                                                                       ; turn off fan
  69.  
  70. [gcode_macro LEDON]
  71. gcode =
  72.     SET_LED LED=my_led RED=1 GREEN=1 BLUE=1
  73.  
  74. [gcode_macro LEDOFF]
  75. gcode =
  76.     SET_LED LED=my_led RED=0 GREEN=0 BLUE=0
  77.  
  78. [gcode_macro LED]
  79. description = Switch light ON/OFF
  80. gcode =
  81.     {% if printer["led my_led"].color_data[0][0] > 0 %}
  82.     SET_LED LED=my_led RED=0 GREEN=0 BLUE=0
  83.     {% else %}
  84.     SET_LED LED=my_led RED=1 GREEN=1 BLUE=1
  85.     {% endif %}
  86.  
  87. [gcode_macro M105]
  88. rename_existing = M105.1
  89. gcode =
  90.     M105.1
  91.     {% if printer.extruder.target == 0 %}
  92.     {% if printer.extruder.temperature > 50.0 %}
  93.     SET_LED LED=my_led RED=1 GREEN=0 BLUE=0
  94.     {% else %}
  95.     SET_LED LED=my_led RED=0 GREEN=1 BLUE=0
  96.     {% endif %}
  97.     {% else %}
  98.     {% if printer.extruder.temperature >= printer.extruder.target - 4.0 %}
  99.     SET_LED LED=my_led RED=1 GREEN=1 BLUE=1
  100.     {% else %}
  101.     {% set scaler = printer.extruder.temperature|float / printer.extruder.target|float %}
  102.     SET_LED LED=my_led RED={ scaler|float * 1 } GREEN=0 BLUE=0
  103.     {% endif %}
  104.     {% endif %}
  105.  
  106. [gcode_macro LOAD_MESH_TEMP]
  107. description = Load or generate a mesh
  108. gcode =
  109.     {% set bed_temperature = params.T_BED|default(0) %}
  110.     {% set force = params.FORCE|default(0) %}
  111.     {action_respond_info("- AUTOMATED BED MESH GENERATOR -")}
  112.     {% if bed_temperature|int < 30 %}
  113.     {action_respond_info("Your bed temp is to low, make sure it is at least 30 or higher")}
  114.     {% else %}
  115.     {% if printer.configfile.config["bed_mesh " + bed_temperature] is defined and force|int == 0 %}
  116.     BED_MESH_PROFILE LOAD={bed_temperature}
  117.     G28 Z
  118.     {action_respond_info("Succesfully loaded bed_mesh "+ bed_temperature)}
  119.     {% else %}
  120.     {% if printer.configfile.config["bed_mesh " + bed_temperature] is defined and force|int == 1 %}
  121.     BED_MESH_PROFILE REMOVE={bed_temperature}
  122.     {% endif %}
  123.     {action_respond_info("bed_mesh not defined, your bed temperature will go up!")}
  124.     {action_respond_info("We will probe the bed and save the mesh as bed_mesh "+ bed_temperature)}
  125.     ADD_BED_MESH TARGET_TEMP={bed_temperature}
  126.     {% endif %}
  127.     {% endif %}
  128.  
  129. [gcode_macro ADD_BED_MESH]
  130. description = Generate a mesh and prepare for SAVE_CONFIG
  131. gcode =
  132.     {% set target_temp = params.TARGET_TEMP|default(30) %}
  133.     M190 S{target_temp}
  134.     G28
  135.     BED_MESH_CALIBRATE
  136.     BED_MESH_PROFILE SAVE={target_temp}
  137.     BED_MESH_PROFILE REMOVE=default
  138.  
  139. [gcode_macro PRESSURE_ADV_MATERIAL]
  140. gcode =
  141.     {% set MATERIAL = params.MATERIAL|default('NIX') %}
  142.     {% set PA_STOCK = printer.configfile.settings.extruder.pressure_advance|string %}
  143.     {% set PA = NIX %}
  144.     {action_respond_info("- AUTOMATIC PRESSURE ADVANCE LOADER -")}
  145.     {% if MATERIAL == 'PLA' %}
  146.     {action_respond_info(MATERIAL + " erkannt. Setze Pressure Advance")}
  147.     {% set PA = 0.05425 %}
  148.     {% elif MATERIAL == 'PETG' %}
  149.     {action_respond_info(MATERIAL + " erkannt. Setze Pressure Advance")}
  150.     {% set PA = 0.056 %}
  151.     {% elif MATERIAL == 'TPU' %}
  152.     {action_respond_info(MATERIAL + " erkannt. Setze Pressure Advance")}
  153.     {% set PA = 0.49 %}
  154.     {% elif MATERIAL == 'NIX' %}
  155.     {action_respond_info("Material wurde nicht uebergeben: " + MATERIAL)}
  156.     {action_respond_info("Setze Standard: "+ PA_STOCK)}
  157.     {% set PA = PA_STOCK %}
  158.     {% else %}
  159.     {action_respond_info("Material unbekannt: " + MATERIAL)}
  160.     {action_respond_info("Setze Standard: "+ PA_STOCK)}
  161.     {% set PA = PA_STOCK %}
  162.     {% endif %}
  163.     SET_PRESSURE_ADVANCE EXTRUDER=extruder ADVANCE={PA}
  164.  
  165. [gcode_macro PLA_COLDPULL]
  166. gcode =
  167.     M104 S240
  168.     TEMPERATURE_WAIT SENSOR=extruder MINIMUM=240
  169.     M83
  170.     G1 E50 F180
  171.     M104 S80
  172.     TEMPERATURE_WAIT SENSOR=extruder MINIMUM=181 MAXIMUM=185
  173.     M104 S80
  174.     M83
  175.     G1 E30 F15
  176.     TEMPERATURE_WAIT SENSOR=extruder  MAXIMUM=85
  177.     BLTOUCH_DEBUG COMMAND=pin_down
  178.     BLTOUCH_DEBUG COMMAND=pin_up
  179.     BLTOUCH_DEBUG COMMAND=pin_down
  180.     BLTOUCH_DEBUG COMMAND=pin_up
  181.  
  182. [gcode_macro SEARCH_VARS]
  183. gcode =
  184.     {% set search = params.S|lower %}
  185.     {% set ns = namespace() %}
  186.     {% for item in printer  %}
  187.     {% if ' ' in item %}
  188.     {% set ns.path = ['printer', "['%s']" % (item), ''] %}
  189.     {% else %}
  190.     {% set ns.path = ['printer.', item, ''] %}
  191.     {% endif %}
  192.     {% if search in ns.path|lower %}
  193.     { action_respond_info(ns.path|join) }
  194.     {% endif %}
  195.     {% if printer[item].items() %}
  196.     {% for childkey, child in printer[item].items() recursive %}
  197.     {% set ns.path = ns.path[:loop.depth|int + 1] %}
  198.     {% if ' ' in childkey %}
  199.     {% set null = ns.path.append("['%s']" % (childkey)) %}
  200.     {% else %}
  201.     {% set null = ns.path.append(".%s" % (childkey)) %}
  202.     {% endif %}
  203.     {% if child is mapping  %}
  204.     { loop(child.items()) }
  205.     {% else %}
  206.     {% if search in ns.path|lower %}
  207.     { action_respond_info("%s : %s" % (ns.path|join, child)) }
  208.     {% endif %}
  209.     {% endif %}
  210.     {% endfor %}
  211.     {% endif %}
  212.     {% endfor %}
  213.  
  214. [stepper_x]
  215. step_pin = !PB14
  216. dir_pin = PB13
  217. enable_pin = !PB15
  218. microsteps = 16
  219. rotation_distance = 40
  220. endstop_pin = !PA2
  221. position_endstop = 0
  222. position_max = 310
  223. homing_speed = 40.0
  224.  
  225. [stepper_y]
  226. step_pin = PB10
  227. dir_pin = PB2
  228. enable_pin = !PB12
  229. microsteps = 16
  230. rotation_distance = 40
  231. endstop_pin = !PA1
  232. position_endstop = 0
  233. position_max = 310
  234. homing_speed = 40
  235. homing_positive_dir = false
  236.  
  237. [stepper_z]
  238. step_pin = PB0
  239. dir_pin = !PC5
  240. enable_pin = !PB1
  241. microsteps = 16
  242. rotation_distance = 8
  243. endstop_pin = probe:z_virtual_endstop
  244. position_min = -3
  245. position_max = 400
  246. homing_speed = 10
  247. second_homing_speed = 2
  248.  
  249. [stepper_z1]
  250. step_pin = PA4
  251. dir_pin = !PA3
  252. enable_pin = !PA5
  253. microsteps = 16
  254. rotation_distance = 8
  255.  
  256. [extruder]
  257. step_pin = PA7
  258. dir_pin = PA6
  259. enable_pin = !PC4
  260. microsteps = 16
  261. rotation_distance = 7.4136
  262. nozzle_diameter = 0.400
  263. filament_diameter = 1.750
  264. heater_pin = PC9
  265. sensor_type = EPCOS 100K B57560G104F
  266. sensor_pin = PC0
  267. min_extrude_temp = 180
  268. min_temp = -273.15
  269. max_temp = 300
  270. max_extrude_only_distance = 500
  271. max_extrude_cross_section = 2.0
  272. smooth_time = 1
  273. pressure_advance = 0.08875
  274. max_power = 1
  275. pwm_cycle_time = 0.166
  276. pid_kp = 15.589
  277. pid_ki = 0.486
  278. pid_kd = 125.104
  279. control = pid
  280.  
  281. [heater_bed]
  282. heater_pin = PA8
  283. sensor_type = EPCOS 100K B57560G104F
  284. sensor_pin = PC1
  285. min_temp = 5
  286. max_temp = 150
  287. smooth_time = 3
  288. pwm_cycle_time = 0.166
  289. control = pid
  290. pid_kp = 47.604
  291. pid_ki = 0.397
  292. pid_kd = 1426.335
  293.  
  294. [fan]
  295. pin = PC8
  296. kick_start_time = 0.200
  297.  
  298. [controller_fan stepper_fan]
  299. pin = PC6
  300. kick_start_time = 0.800
  301. shutdown_speed = 1
  302. idle_timeout = 300
  303. fan_speed = 1.0
  304.  
  305. [heater_fan extruder_fan]
  306. pin = PC7
  307. heater = extruder
  308. shutdown_speed = 1
  309. heater_temp = 45.0
  310. fan_speed = 1.0
  311. kick_start_time = 0.500
  312.  
  313. [mcu]
  314. serial = /dev/serial/by-id/usb-Klipper_stm32f401xc_3C0069001851383435373136-if00
  315.  
  316. [virtual_sdcard]
  317. path = /home/pi/gcode_files
  318.  
  319. [pause_resume]
  320. recover_velocity = 50.
  321.  
  322. [display_status]
  323.  
  324. [gcode_macro CANCEL_PRINT]
  325. description = Cancel the actual running print
  326. rename_existing = CANCEL_PRINT_BASE
  327. variable_park = True
  328. gcode =
  329.     {% if printer.pause_resume.is_paused|lower == 'false' and park|lower == 'true'%}
  330.     _TOOLHEAD_PARK_PAUSE_CANCEL
  331.     {% endif %}
  332.     TURN_OFF_HEATERS
  333.     CANCEL_PRINT_BASE
  334.  
  335. [gcode_macro PAUSE]
  336. description = Pause the actual running print
  337. rename_existing = PAUSE_BASE
  338. gcode =
  339.     PAUSE_BASE
  340.     _TOOLHEAD_PARK_PAUSE_CANCEL
  341.  
  342. [gcode_macro RESUME]
  343. description = Resume the actual running print
  344. rename_existing = RESUME_BASE
  345. gcode =
  346.     {% set extrude = printer['gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL'].extrude %}
  347.     {% if 'VELOCITY' in params|upper %}
  348.     {% set get_params = ('VELOCITY=' + params.VELOCITY)  %}
  349.     {%else %}
  350.     {% set get_params = "" %}
  351.     {% endif %}
  352.     {% if printer.extruder.can_extrude|lower == 'true' %}
  353.     M83
  354.     G1 E{extrude} F2100
  355.     {% if printer.gcode_move.absolute_extrude |lower == 'true' %} M82 {% endif %}
  356.     {% else %}
  357.     {action_respond_info("Extruder not hot enough")}
  358.     {% endif %}
  359.     RESUME_BASE {get_params}
  360.  
  361. [gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL]
  362. description = Helper: park toolhead used in PAUSE and CANCEL_PRINT
  363. variable_extrude = 1.0
  364. gcode =
  365.     {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
  366.     {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
  367.     {% set z_park_delta = 10.0 %}
  368.     {% set max_z = printer.toolhead.axis_maximum.z|float %}
  369.     {% set act_z = printer.toolhead.position.z|float %}
  370.     {% if act_z < (max_z - z_park_delta) %}
  371.     {% set z_safe = z_park_delta %}
  372.     {% else %}
  373.     {% set z_safe = max_z - act_z %}
  374.     {% endif %}
  375.     {% if printer.extruder.can_extrude|lower == 'true' %}
  376.     M83
  377.     G1 E-{extrude} F2100
  378.     {% if printer.gcode_move.absolute_extrude |lower == 'true' %} M82 {% endif %}
  379.     {% else %}
  380.     {action_respond_info("Extruder not hot enough")}
  381.     {% endif %}
  382.     {% if "xyz" in printer.toolhead.homed_axes %}
  383.     G91
  384.     G1 Z{z_safe} F900
  385.     G90
  386.     G1 X{x_park} Y{y_park} F6000
  387.     {% if printer.gcode_move.absolute_coordinates|lower == 'false' %} G91 {% endif %}
  388.     {% else %}
  389.     {action_respond_info("Printer not homed"'mcu': Starting serial connect
  390. mcu 'mcu': got {u'count': 332, '#receive_time': 22.600231153, u'sum': 332944, u'sumsq': 2198496, '#name': u'stats', '#sent_time': 22.573901745}
  391. mcu 'mcu': got {'#receive_time': 22.717365468, u'next_clock': 4181472704L, u'oid': 11, u'value': 31358, '#name': u'analog_in_state', '#sent_time': 22.676181301}
  392. mcu 'mcu': got {'#receive_time': 22.857388227, u'next_clock': 4193232704L, u'oid': 25, u'value': 31362, '#name': u'analog_in_state', '#sent_time': 22.828791005}
  393. Loaded MCU 'mcu' 100 commands (v0.10.0-376-gfb3bae45 / gcc: (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] binutils: (2.31.1-11+rpi1+11) 2.31.1)
  394. MCU 'mcu' config: BUS_PINS_i2c1=PB6,PB7 BUS_PINS_i2c2=PB10,PB11 BUS_PINS_spi3a=PC11,PC12,PC10 BUS_PINS_spi2a=PC2,PC3,PB10 BUS_PINS_i2c1a=PB8,PB9 RESERVE_PINS_USB=PA11,PA12 CLOCK_FREQ=84000000 BUS_PINS_spi1a=PB4,PB5,PB3 STATS_SUMSQ_BASE=256 BUS_PINS_spi3=PB4,PB5,PB3 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_spi4=PE13,PE14,PE12 PWM_MAX=255 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi1=PA6,PA7,PA5 RESERVE_PINS_crystal=PH0,PH1 MCU=stm32f401xc
  395. Configured MCU 'mcu' (1024 moves)
  396. Starting heater checks for heater_bed
  397. BLTouch set output mode: 5V
  398. webhooks client 3043011000: New connection
  399. webhooks client 3043011000: Client info {'program': 'Moonraker', 'version': 'v0.7.1-567-g3d9f5dc'}
  400. bed_mesh: generated points
  401. Index |  Tool Adjusted  |   Probe
  402.   0   | (0.0, 23.0)     | (32.0, 5.0)
  403.   1   | (29.2, 23.0)    | (61.2, 5.0)
  404.   2   | (58.4, 23.0)    | (90.4, 5.0)
  405.   3   | (87.7, 23.0)    | (119.7, 5.0)
  406.   4   | (116.9, 23.0)   | (148.9, 5.0)
  407.   5   | (146.1, 23.0)   | (178.1, 5.0)
  408.   6   | (175.3, 23.0)   | (207.3, 5.0)
  409.   7   | (204.5, 23.0)   | (236.5, 5.0)
  410.   8   | (233.8, 23.0)   | (265.8, 5.0)
  411.   9   | (263.0, 23.0)   | (295.0, 5.0)
  412.   10  | (263.0, 54.9)   | (295.0, 36.9)
  413.   11  | (233.8, 54.9)   | (265.8, 36.9)
  414.   12  | (204.5, 54.9)   | (236.5, 36.9)
  415.   13  | (175.3, 54.9)   | (207.3, 36.9)
  416.   14  | (146.1, 54.9)   | (178.1, 36.9)
  417.   15  | (116.9, 54.9)   | (148.9, 36.9)
  418.   16  | (87.7, 54.9)    | (119.7, 36.9)
  419.   17  | (58.4, 54.9)    | (90.4, 36.9)
  420.   18  | (29.2, 54.9)    | (61.2, 36.9)
  421.   19  | (0.0, 54.9)     | (32.0, 36.9)
  422.   20  | (0.0, 86.8)     | (32.0, 68.8)
  423.   21  | (29.2, 86.8)    | (61.2, 68.8)
  424.   22  | (58.4, 86.8)    | (90.4, 68.8)
  425.   23  | (87.7, 86.8)    | (119.7, 68.8)
  426.   24  | (116.9, 86.8)   | (148.9, 68.8)
  427.   25  | (146.1, 86.8)   | (178.1, 68.8)
  428.   26  | (175.3, 86.8)   | (207.3, 68.8)
  429.   27  | (204.5, 86.8)   | (236.5, 68.8)
  430.   28  | (233.8, 86.8)   | (265.8, 68.8)
  431.   29  | (263.0, 86.8)   | (295.0, 68.8)
  432.   30  | (263.0, 118.6)  | (295.0, 100.6)
  433.   31  | (233.8, 118.6)  | (265.8, 100.6)
  434.   32  | (204.5, 118.6)  | (236.5, 100.6)
  435.   33  | (175.3, 118.6)  | (207.3, 100.6)
  436.   34  | (146.1, 118.6)  | (178.1, 100.6)
  437.   35  | (116.9, 118.6)  | (148.9, 100.6)
  438.   36  | (87.7, 118.6)   | (119.7, 100.6)
  439.   37  | (58.4, 118.6)   | (90.4, 100.6)
  440.   38  | (29.2, 118.6)   | (61.2, 100.6)
  441.   39  | (0.0, 118.6)    | (32.0, 100.6)
  442.   40  | (0.0, 150.5)    | (32.0, 132.5)
  443.   41  | (29.2, 150.5)   | (61.2, 132.5)
  444.   42  | (58.4, 150.5)   | (90.4, 132.5)
  445.   43  | (87.7, 150.5)   | (119.7, 132.5)
  446.   44  | (116.9, 150.5)  | (148.9, 132.5)
  447.   45  | (146.1, 150.5)  | (178.1, 132.5)
  448.   46  | (175.3, 150.5)  | (207.3, 132.5)
  449.   47  | (204.5, 150.5)  | (236.5, 132.5)
  450.   48  | (233.8, 150.5)  | (265.8, 132.5)
  451.   49  | (263.0, 150.5)  | (295.0, 132.5)
  452.   50  | (263.0, 182.4)  | (295.0, 164.4)
  453.   51  | (233.8, 182.4)  | (265.8, 164.4)
  454.   52  | (204.5, 182.4)  | (236.5, 164.4)
  455.   53  | (175.3, 182.4)  | (207.3, 164.4)
  456.   54  | (146.1, 182.4)  | (178.1, 164.4)
  457.   55  | (116.9, 182.4)  | (148.9, 164.4)
  458.   56  | (87.7, 182.4)   | (119.7, 164.4)
  459.   57  | (58.4, 182.4)   | (90.4, 164.4)
  460.   58  | (29.2, 182.4)   | (61.2, 164.4)
  461.   59  | (0.0, 182.4)    | (32.0, 164.4)
  462.   60  | (0.0, 214.3)    | (32.0, 196.3)
  463.   61  | (29.2, 214.3)   | (61.2, 196.3)
  464.   62  | (58.4, 214.3)   | (90.4, 196.3)
  465.   63  | (87.7, 214.3)   | (119.7, 196.3)
  466.   64  | (116.9, 214.3)  | (148.9, 196.3)
  467.   65  | (146.1, 214.3)  | (178.1, 196.3)
  468.   66  | (175.3, 214.3)  | (207.3, 196.3)
  469.   67  | (204.5, 214.3)  | (236.5, 196.3)
  470.   68  | (233.8, 214.3)  | (265.8, 196.3)
  471.   69  | (263.0, 214.3)  | (295.0, 196.3)
  472.   70  | (263.0, 246.2)  | (295.0, 228.2)
  473.   71  | (233.8, 246.2)  | (265.8, 228.2)
  474.   72  | (204.5, 246.2)  | (236.5, 228.2)
  475.   73  | (175.3, 246.2)  | (207.3, 228.2)
  476.   74  | (146.1, 246.2)  | (178.1, 228.2)
  477.   75  | (116.9, 246.2)  | (148.9, 228.2)
  478.   76  | (87.7, 246.2)   | (119.7, 228.2)
  479.   77  | (58.4, 246.2)   | (90.4, 228.2)
  480.   78  | (29.2, 246.2)   | (61.2, 228.2)
  481.   79  | (0.0, 246.2)    | (32.0, 228.2)
  482.   80  | (0.0, 278.0)    | (32.0, 260.0)
  483.   81  | (29.2, 278.0)   | (61.2, 260.0)
  484.   82  | (58.4, 278.0)   | (90.4, 260.0)
  485.   83  | (87.7, 278.0)   | (119.7, 260.0)
  486.   84  | (116.9, 278.0)  | (148.9, 260.0)
  487.   85  | (146.1, 278.0)  | (178.1, 260.0)
  488.   86  | (175.3, 278.0)  | (207.3, 260.0)
  489.   87  | (204.5, 278.0)  | (236.5, 260.0)
  490.   88  | (233.8, 278.0)  | (265.8, 260.0)
  491.   89  | (263.0, 278.0)  | (295.0, 260.0)
  492.   90  | (263.0, 309.9)  | (295.0, 291.9)
  493.   91  | (233.8, 309.9)  | (265.8, 291.9)
  494.   92  | (204.5, 309.9)  | (236.5, 291.9)
  495.   93  | (175.3, 309.9)  | (207.3, 291.9)
  496.   94  | (146.1, 309.9)  | (178.1, 291.9)
  497.   95  | (116.9, 309.9)  | (148.9, 291.9)
  498.   96  | (87.7, 309.9)   | (119.7, 291.9)
  499.   97  | (58.4, 309.9)   | (90.4, 291.9)
  500.   98  | (29.2, 309.9)   | (61.2, 291.9)
  501.   99  | (0.0, 309.9)    | (32.0, 291.9)
  502. Starting heater checks for extruder
  503. webhooks: registering remote method 'shutdown_machine' for connection id: 3043011000
  504. webhooks: registering remote method 'reboot_machine' for connection id: 3043011000
  505. webhooks: registering remote method 'pause_job_queue' for connection id: 3043011000
  506. webhooks: registering remote method 'start_job_queue' for connection id: 3043011000
  507.  
Advertisement
Add Comment
Please, Sign In to add comment