# Does anyone have a config file (printer.cfg) for the ender 3 v3 se

**URL:** https://klipper.discourse.group/t/does-anyone-have-a-config-file-printer-cfg-for-the-ender-3-v3-se/20434
**Category:** General Discussion
**Created:** [December 4, 2024, 12:34am UTC](https://klipper.discourse.group/t/does-anyone-have-a-config-file-printer-cfg-for-the-ender-3-v3-se/20434 "2024-12-04T00:34:48Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Heremonkey](https://avatars.discourse-cdn.com/v4/letter/h/7cd45c/32.png) [@Heremonkey](https://klipper.discourse.group/u/Heremonkey)
#### Post date: [December 4, 2024, 12:34am UTC](https://klipper.discourse.group/t/does-anyone-have-a-config-file-printer-cfg-for-the-ender-3-v3-se/20434/1 "2024-12-04T00:34:48Z")

</div>

### Basic Information:

Printer Model: ender 3 v3 se  
 MCU / Printerboard: idk  
 Host / SBC raspberry pi 3b+  
 klippy.log

_Fill out above information and_ **_in all cases attach your_ `klippy.log` _file_** (use zip to compress it, if too big). _Pasting your_ `printer.cfg` _is **not** needed_  
_ **Be sure to check our “Knowledge Base” Category first. Most relevant items, e.g. error messages, are covered there** _

### Describe your issue: Does anyone have a config file (printer.cfg) for the ender 3 v3 se. I need a good printer.cfg file

…

---

<div class="post-metadata">

### Author: ![EddyMI3D](https://yyz2.discourse-cdn.com/free1/user_avatar/klipper.discourse.group/eddymi3d/32/1981_2.png) [@EddyMI3D](https://klipper.discourse.group/u/EddyMI3D)
#### Post date: [December 4, 2024, 6:43am UTC](https://klipper.discourse.group/t/does-anyone-have-a-config-file-printer-cfg-for-the-ender-3-v3-se/20434/2 "2024-12-04T06:43:23Z")

</div>

Please put your your request also to the text area - not only to the topic.

---

<div class="post-metadata">

### Author: ![kiwispaceman](https://yyz2.discourse-cdn.com/free1/user_avatar/klipper.discourse.group/kiwispaceman/32/16329_2.png) [@kiwispaceman](https://klipper.discourse.group/u/kiwispaceman)
#### Post date: [December 10, 2024, 6:00am UTC](https://klipper.discourse.group/t/does-anyone-have-a-config-file-printer-cfg-for-the-ender-3-v3-se/20434/3 "2024-12-10T06:00:22Z")

</div>

Here is one I am using. Sorry, I can’t recall where I got it or I’d give them credit for it!  
Note the screen, and pressure sensor (used for automatic Z-offset) don’t work in Klipper.

./shaun

```auto
# This file contains pin mappings for the stock 2022 Creality Ender 3
# V3 SE. To use this config, during "make menuconfig" select the
# STM32F103 with a "28KiB bootloader" and serial (on USART1 PA10/PA9)
# communication.

# If you prefer a direct serial connection, in "make menuconfig"
# select "Enable extra low-level configuration options" and select
# serial (on USART1 PA2/PA3), which is broken out on the 10 pin IDC
# cable used for the LCD module as follows:
# 3: Tx, 4: Rx, 9: GND, 10: VCC

# Flash this firmware by copying "out/klipper.bin" to a SD card and
# turning on the printer with the card inserted. The firmware
# filename must end in ".bin" and must not match the last filename
# that was flashed.

# This also works for the GD32F303 based Creality 4.2.2 board.

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

##############################################################################
## INCLUSION FILES
##############################################################################
[include mainsail.cfg]
[include custom_macros/*.cfg]
#[include usb_accelerometer.cfg]

##############################################################################
## ADDITIONAL CAPABILITIES
##############################################################################
[virtual_sdcard]
path: ~/printer_data/gcodes
on_error_gcode: CANCEL_PRINT
[exclude_object]
[display_status]

[force_move]
enable_force_move: True

##############################################################################
## MCU (Stock Creality)
##############################################################################
[mcu]
serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
restart_method: command

##############################################################################
## DISPLAY and MENUS
##############################################################################

### Disabled stock display after installing Klipper

##############################################################################
## STEPPERS XYZ
##############################################################################
[stepper_x]
step_pin: PC2
dir_pin: !PB9
enable_pin: !PC3
microsteps: 16
rotation_distance: 40
endstop_pin: ~!PA5
# homing_retract_dist: 0
position_endstop: -8
position_min: -8
position_max: 225
homing_speed: 150

homing_retract_dist: 5.0
homing_retract_speed: 20
second_homing_speed: 2

[tmc2209 stepper_x]
uart_pin: PB12
run_current: 0.7
#hold_current: 0.5
sense_resistor: 0.150
stealthchop_threshold: 999999
interpolate: False

[stepper_y]
step_pin: PB8
dir_pin: PB7
enable_pin: !PC3
microsteps: 16
rotation_distance: 40
endstop_pin: ~!PA6
position_endstop: -17
position_min: -17
position_max: 225
homing_speed: 150

homing_retract_dist: 5.0
homing_retract_speed: 20
second_homing_speed: 2

[tmc2209 stepper_y]
uart_pin: PB13
run_current: 0.7
#hold_current: 0.5
sense_resistor: 0.150
stealthchop_threshold: 999999
interpolate: False

[stepper_z]
step_pin: PB6
dir_pin: !PB5
enable_pin: !PC3
microsteps: 16
rotation_distance: 8
endstop_pin: probe:z_virtual_endstop
position_min: -3 #only set during CRTouch calibratiion
position_max: 250
homing_speed: 30

homing_retract_dist: 5.0
homing_retract_speed: 5
second_homing_speed: 2

[tmc2209 stepper_z]
uart_pin: PB14
run_current: 0.8
#hold_current: 0.5
sense_resistor: 0.150
stealthchop_threshold: 999999
interpolate: False

#[homing_override]
#set_position_z: 0
#gcode:
# G0 Z10
# G28 X0
# G28 Y0
# G28 Z0

##############################################################################
## EXTRUDER
##############################################################################
[extruder]
step_pin: PB4
dir_pin: PB3
enable_pin: !PC3
microsteps: 16
rotation_distance: 7.44
nozzle_diameter: 0.4
filament_diameter: 1.75
heater_pin: PA1
sensor_type: EPCOS 100K B57560G104F
sensor_pin: PC5
#control: pid
#pid_Kp: 27.142
#pid_Ki: 1.371
#pid_Kd: 134.351
min_temp: 0
max_temp: 260
#max_extrude_cross_section:2
max_extrude_only_distance: 100
max_extrude_only_velocity: 10
pressure_advance: 0.0715

#[tmc2208 extruder]
#run_current: 0.7
##hold_current: 0.500
#sense_resistor: 0.150
#stealthchop_threshold: 999999
#interpolate: False

[firmware_retraction]
retract_length: 0.8
retract_speed: 30
unretract_extra_length: 0
unretract_speed: 30

##############################################################################
## KINEMATICS
##############################################################################
[printer]
kinematics: cartesian
max_velocity: 500
max_accel: 5000
max_z_velocity: 30
max_z_accel: 1000
square_corner_velocity: 5.0

[gcode_arcs]
resolution: 1.0

[input_shaper]

##############################################################################
## BED LEVELLING
##############################################################################
# Stock CR Touch bed sensor
[bltouch]
sensor_pin: ^PC14
control_pin: PC13
x_offset: -23.0
y_offset: -14.5
#z_offset: 2.65
probe_with_touch_mode: True
speed: 50
pin_move_time: 0.4
stow_on_each_sample: false

[bed_mesh]
speed: 200
horizontal_move_z: 5
mesh_min: 30,30 # Need to handle head distance with cr-touch (bl_touch)
mesh_max: 202,210.5 # Max probe range (230-23,230-14.5)
probe_count: 5,5
algorithm: bicubic

# Probe locations for assisted bed screw adjustment.
[screws_tilt_adjust]
screw1: 54.5, 45.5
screw1_name: front left screw
screw2: 224.5, 45.5
screw2_name: front right screw
screw3: 224.5, 215.5
screw3_name: rear right screw
screw4: 54.5, 215.5
screw4_name: rear left screw
horizontal_move_z: 10.
speed: 50
screw_thread: CCW-M4

[safe_z_home]
#home_xy_position: 110,65
home_xy_position: 134,123
speed: 150
z_hop: 50
z_hop_speed: 30

##############################################################################
## HEATERS and FANS
##############################################################################
[heater_bed]
heater_pin: PB2
sensor_type: EPCOS 100K B57560G104F
sensor_pin: PC4
#control: pid
#pid_kp: 66.371
#pid_ki: 0.846
#pid_kd: 1301.702
min_temp: 0
max_temp: 100

[fan]
pin: PA0

[heater_fan Hotend]
pin: PC1
heater: extruder
heater_temp: 50.0

##############################################################################
## ADDITIONAL SENSORS
##############################################################################
[temperature_sensor rPi]
sensor_type: temperature_host
min_temp: 10
max_temp: 100

[temperature_sensor MCU]
sensor_type: temperature_mcu
min_temp: 0
max_temp: 100

#[filament_switch_sensor filament_sensor]
#switch_pin: !PC15
#pause_on_runout: true

```

---

<div class="post-metadata">

### Author: ![system](https://global.discourse-cdn.com/free1/uploads/klipper/original/1X/64419bf2aac6639e6ef5cef200dcd456b0a01ac3.png) [@system](https://klipper.discourse.group/u/system)
#### Post date: [February 8, 2025, 6:00am UTC](https://klipper.discourse.group/t/does-anyone-have-a-config-file-printer-cfg-for-the-ender-3-v3-se/20434/4 "2025-02-08T06:00:47Z")

</div>

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.
