Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| machines:voron-conf [2024/03/25 09:12] – created admin | machines:voron-conf [2024/04/25 14:24] (current) – ottmannm | ||
|---|---|---|---|
| Line 30: | Line 30: | ||
| ==== Voron 2.4 ==== | ==== Voron 2.4 ==== | ||
| ==== Voron V0 ==== | ==== Voron V0 ==== | ||
| + | |||
| + | < | ||
| + | ######################################################### | ||
| + | #### User MCU and TMCs wiring definition file ########### | ||
| + | ######################################################### | ||
| + | |||
| + | # This file is yours: keep in mind that it will not be erased when updating | ||
| + | # the config using moonraker and it will be kept as you've set it. | ||
| + | |||
| + | # Put here all your wiring definitions, | ||
| + | # It should be populated automatically with some default wiring templates during | ||
| + | # the first time install of the config if you choose to do so when asked by the | ||
| + | # script. If it's not the case, you will need to manually define all your | ||
| + | # [board_pins] section. You can use the pinout documentation here: ./ | ||
| + | |||
| + | # ------------------------------------------------------------------------------------------ | ||
| + | |||
| + | |||
| + | # | ||
| + | # TMCs DRIVERS | ||
| + | # | ||
| + | |||
| + | # ---------------------------------------------------------------------- AXIS DRIVERS ----> optional, but only one line per axis need to be selected | ||
| + | ### 1. X Drivers ------------------------------------------------------------------------- | ||
| + | [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | ### 2. Y Drivers ------------------------------------------------------------------------- | ||
| + | [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | ### 3. Z Drivers ------------------------------------------------------------------------- | ||
| + | [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # [include config/ | ||
| + | # ---------------------------------------------------------------------------------------- | ||
| + | |||
| + | |||
| + | # ------------------------------------------------------------------- EXTRUDER DRIVER ----> optional, but only one line need to be selected | ||
| + | ### -------------------------------------------------------------------------------------- | ||
| + | [include config/ | ||
| + | # [include config/ | ||
| + | # ---------------------------------------------------------------------------------------- | ||
| + | |||
| + | # | ||
| + | #### Fysetc Catalyst v1.x MCU definition ###### | ||
| + | # | ||
| + | |||
| + | [mcu] | ||
| + | ## | ||
| + | # This board work by using a serial connection by default. If you | ||
| + | # want to use CAN, invert the commented lines and use canbus_uuid. | ||
| + | |||
| + | serial: / | ||
| + | # canbus_uuid: | ||
| + | ## | ||
| + | |||
| + | [include config/ | ||
| + | [board_pins catalyst_mcu] | ||
| + | mcu: mcu | ||
| + | aliases: | ||
| + | X_STEP=MCU_B_MOT_STEP | ||
| + | Y_STEP=MCU_A_MOT_STEP | ||
| + | Z_STEP=MCU_Z_MOT_STEP | ||
| + | E_STEP=MCU_E_MOT_STEP | ||
| + | X_STOP=MCU_B_MOD_DIAG, | ||
| + | # | ||
| + | DRIVER_SPI_MOSI=MCU_SPI_MOSI , # Used in case of SPI drivers such as TMC2240 or TMC5160 | ||
| + | DRIVER_SPI_MISO=MCU_SPI_MISO , # Used in case of SPI drivers such as TMC2240 or TMC5160 | ||
| + | DRIVER_SPI_SCK=MCU_SPI_SCK | ||
| + | | ||
| + | PROBE_INPUT=MCU_PROBE | ||
| + | RUNOUT_SENSOR=MCU_IO2, | ||
| + | E_HEATER=MCU_HEAT | ||
| + | BED_HEATER=MCU_BED , BED_TEMPERATURE=MCU_T1 , | ||
| + | |||
| + | PART_FAN=MCU_FAN1 , E_FAN=MCU_FAN0 , | ||
| + | CONTROLLER_FAN=MCU_FAN2 | ||
| + | |||
| + | LIGHT_NEOPIXEL=MCU_NEOPIXEL | ||
| + | |||
| + | </ | ||
| + | |||
| + | < | ||
| + | [extruder] | ||
| + | control: pid | ||
| + | pid_kp: 28.182 | ||
| + | pid_ki: 1.978 | ||
| + | pid_kd: 100.397 | ||
| + | |||
| + | [heater_bed] | ||
| + | control: pid | ||
| + | pid_kp: 68.453 | ||
| + | pid_ki: 2.749 | ||
| + | pid_kd: 426.122 | ||
| + | |||
| + | [stepper_x] | ||
| + | dir_pin: !X_DIR | ||
| + | |||
| + | [stepper_y] | ||
| + | dir_pin: !Y_DIR | ||
| + | |||
| + | [tmc2209 stepper_x] | ||
| + | driver_SGTHRS: | ||
| + | |||
| + | [tmc2209 stepper_y] | ||
| + | driver_SGTHRS: | ||
| + | |||
| + | [display] | ||
| + | lcd_type: sh1106 | ||
| + | click_pin: ^!PA15 | ||
| + | i2c_bus: i2c1a | ||
| + | i2c_mcu: mcu | ||
| + | encoder_pins: | ||
| + | kill_pin: ^!PB12 | ||
| + | vcomh: 60 | ||
| + | x_offset: 2 | ||
| + | |||
| + | # | ||
| + | # Z MOTORS DIRECTION | ||
| + | # | ||
| + | [stepper_z] | ||
| + | position_endstop: | ||
| + | |||
| + | </ | ||
| + | |||
| ==== Raise 3D E2 ==== | ==== Raise 3D E2 ==== | ||