VoronDesign / Voron-Trident

Voron Trident CoreXY 3D Printer design
582 stars 172 forks source link

Octopus config for Trident #32

Closed cbc02009 closed 2 years ago

cbc02009 commented 2 years ago

This config matches the wiring diagram for the v2 in the voron docs, which will allow us to re-use it and save some work.

cbc02009 commented 2 years ago

Still TODO:

Edit: Done

cbc02009 commented 2 years ago

Need to replace QGL with tilt need to fix probe pin for octopus pro. should be ~!PC5

telxoid commented 2 years ago

Hiya--here's what I found. Let me know if there are issues or the line numbers got wacky.

Line 142/143: Dupes. Line: 145, Z homing speed. 35 is way fast. homing_speed: 8.0 # Leadscrews are slower than 2.4, 10 is a recommended max.

Lines 153, 154, 172, 173, 191, 192: All Z currents are high. Use 0.6 to start.

Line 235: I typically leave PA commented for initial config.

Line 362-364: I'd leave this commented so someone has to config it.

Line 366-414: Remove QGL.

Added z_tilt section as below in Macros section:

[z_tilt]
##  Use Z_TILT_ADJUST to level the bed .
##  z_positions: Location of toolhead

##--------------------------------------------------------------------
## Uncomment below for 250mm build
z_positions:
    -50, 18
    125, 298
    300, 18
points:
    30, 5
    125, 195
    220, 5

## Uncomment below for 300mm build
#z_positions:
#   -50, 18
#   150, 348
#   350, 18
#points:
#   30, 5
#   150, 245
#   270, 5

## Uncomment below for 350mm build
#z_positions:
#   -50, 18
#   175, 398
#   400, 18
#points:
#   30, 5
#   175, 295
#   320, 5

##--------------------------------------------------------------------

speed: 200
horizontal_move_z: 10
retries: 5
retry_tolerance: 0.0075

Config doesn't have any of the required stuff for Mainsail. Maybe link to https://docs.mainsail.xyz/necessary-configuration at the top?

cbc02009 commented 2 years ago

@telxoid Thanks for the great feedback! You don't want the safe_z_home section commented out because you need the printer to run to configure the A/B steppers before homing z. The negative values prevent the user from accidentally crashing into the bed by being over-eager and not following the startup guide.

In the past we've left references to mainsail/fluidd out of the stock config files, but it can't hurt to add commented lines for users to uncomment. Let me see what the devs prefer.

cbc02009 commented 2 years ago

@KiloQubit any other concerns with this config? I've had quite a few users test it out for me in the trident channel. Would you rather I move this to usermods instead?