Кремень КД Реклама
Кремень КМ Реклама

Klipper на Sapphire Pluse

vadimxg
Идет загрузка
Загрузка
22.01.2023
3154
7
Вопросы и ответы
Статья относится к принтерам:
Sapphire Plus

Коллеги, добрый день!

Поставил Klipper на Sapphire Pluse (плата Robin Nano v1.2). Все работает оси, концевики, нагрев, но есть проблема одна - не крутит экструдер. Я уже всё сто раз перепроверил, пины, разные настройки ставил. Не крутит и всё. Ставлю родную прошивку - все ОК. Что еще можно посмотреть? Конфиг и плата ниже.

Klipper на Sapphire Pluse

# This file contains common pin mappings for the Two Trees Sapphire

# Plus V1 (SP-5) printer (Robin Nano 1.2, 2208 drivers for X,Y and A4988 for Zs,E).

# INSTRUCTIONS FOR COMPILING

# To use this config, the firmware should be compiled for the STM32F103.

# When running "make menuconfig", enable "extra low-level configuration setup",

# select the 28KiB bootloader, serial (on USART3 PB11/PB10) to use USB communication

# or serial (on USART1 PA10/PA9) to use direct UART connection with Raspberry trough wifi pins.

# Set "GPIO pins to set at micro-controller startup" to "!PC6,!PD13" to turn off display at startup.

# INSTRUCTIONS FOR FLASHING, THE SCRIPT IS COMPULSORY OR IT WON'T WORK!!!

# Note that the "make flash" command does not work with the Robin Nano!

# After running "make", run the following command in one row FROM THE KLIPPER FOLDER:

# ./scripts/update_mks_robin.py out/klipper.bin out/Robin_nano35.bin

# Copy the file out/Robin_nano35.bin (if you can't find the file the script was not executed)

# to an SD card and then restart the printer with that SD card.

# If you removed the LCD screen rename the file to "Robin_nano43.bin" for correct flashing.

# See docs/Config_Reference.md for a description of parameters.

[stepper_x]

step_pin: PE3

dir_pin: !PE2

enable_pin: !PE4

microsteps: 16

rotation_distance: 40

endstop_pin: !PA15

position_endstop: 0

position_max: 292

homing_speed: 50

[stepper_y]

step_pin: PE0

dir_pin: !PB9

enable_pin: !PE1

microsteps: 16

rotation_distance: 40

endstop_pin: PA12

position_endstop: 292

position_max: 292

homing_speed: 50

[stepper_z]

step_pin: PB5

dir_pin: PB4

enable_pin: !PB8

microsteps: 16

rotation_distance: 8

endstop_pin: PA11

position_endstop: 0

position_max: 340

[stepper_z1]

step_pin: PA6

dir_pin: PA1

enable_pin: !PA3

microsteps: 16

endstop_pin: PC4

rotation_distance: 8

[extruder]

step_pin: PD6

dir_pin: !PD3

enable_pin: PB3

microsteps: 16

gear_ratio: 50:17

rotation_distance: 7.711

nozzle_diameter: 0.300

filament_diameter: 1.750

max_extrude_only_distance: 10.0

heater_pin: PC3

sensor_type: EPCOS 100K B57560G104F # Stock

sensor_pin: PC1

min_temp: 0

max_temp: 250

control: pid

pid_Kp: 17.48

pid_Ki: 1.32

pid_Kd: 57.81

[heater_bed]

heater_pin: PA0

sensor_type: EPCOS 100K B57560G104F # Stock

sensor_pin: PC0

min_temp: 0

max_temp: 130

control: pid

pid_Kp: 325.10

pid_Ki: 63.35

pid_Kd: 417.10

[heater_fan extruder]

pin: PB0

[fan]

pin: PB1

[mcu]

serial: /dev/ttyUSB0

restart_method: command

[printer]

kinematics: corexy

max_velocity: 250

max_accel: 4500

max_z_velocity: 15

max_z_accel: 100

[bed_screws]

screw1: 35,35

screw2: 275,35

screw3: 275,275

screw4: 35,275

[static_digital_output reset_display]

pins: !PC6, !PD13

[virtual_sdcard]

path: ~/printer_data/gcodes

[display_status]

[pause_resume]

[gcode_macro PAUSE]

description: Pause the actual running print

rename_existing: PAUSE_BASE

# change this if you need more or less extrusion

variable_extrude: 1.0

gcode:

  ##### read E from pause macro #####

  {% set E = printer["gcode_macro PAUSE"].extrude|float %}

  ##### set park positon for x and y #####

  # default is your max posion from your printer.cfg

  {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}

  {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}

  ##### calculate save lift position #####

  {% set max_z = printer.toolhead.axis_maximum.z|float %}

  {% set act_z = printer.toolhead.position.z|float %}

  {% if act_z 

Ответы на вопросы