Skip to content

Commit

Permalink
Printers: Use y for B and y2 for second Y stepper in hybrid
Browse files Browse the repository at this point in the history
  • Loading branch information
miklschmidt committed Jan 5, 2024
1 parent f4e14d7 commit e527af5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion printers/printer-definition.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
"axis": {
"description": "Axis for this rail.",
"type": "string",
"enum": ["x", "x1", "dual_carriage", "y", "y1", "z", "z1", "z2", "z3", "extruder", "extruder1"]
"enum": ["x", "x1", "dual_carriage", "y", "y1", "y2", "z", "z1", "z2", "z3", "extruder", "extruder1"]
},
"axisDescription": {
"description": "Description of the axis for this rail such as where it's located on the printer",
Expand Down
6 changes: 3 additions & 3 deletions printers/v-core-3-hybrid/printer-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
}
},
{
"axis": "x1",
"axis": "y",
"axisDescription": "The B axis motor for the toolhead, located at the rear right of the printer",
"current": 1.1,
"driver": "BTT-TMC2209-13",
Expand All @@ -64,7 +64,7 @@
}
},
{
"axis": "y",
"axis": "y1",
"axisDescription": "The left Y motor used for cartesian Y control in Hybrid CoreXY, located at the rear left of the printer",
"current": 1.1,
"driver": "BTT-TMC2209-13",
Expand All @@ -76,7 +76,7 @@
}
},
{
"axis": "y1",
"axis": "y2",
"axisDescription": "The right Y motor used for cartesian Y control in Hybrid CoreXY, located at the rear right of the printer",
"current": 1.1,
"driver": "BTT-TMC2209-13",
Expand Down

0 comments on commit e527af5

Please sign in to comment.