📝 Improve, clean up READMEs (#988)

This commit is contained in:
Keith Bennett 2023-11-14 02:51:08 -08:00 committed by GitHub
parent 41c598df02
commit 58f3843bc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 78 additions and 89 deletions

View file

@ -10,10 +10,10 @@ All axes in this example use the same steps/mm, acceleration, etc.
In this example Marlin automatically maps extra axes to the unused E0, E1, E2, E3 and E4 (Z2) stepper ports.
Endstop pins must be assigned manually, so this example assigns endstops as follows:
```
I_MIN_PIN PG11 // Z2-STOP
J_MIN_PIN PG12 // E0DET
K_MIN_PIN PG13 // E1DET
U_MIN_PIN PG14 // E2DET
V_MIN_PIN PG15 // E3DET
```cpp
#define I_MIN_PIN PG11 // Z2-STOP
#define J_MIN_PIN PG12 // E0DET
#define K_MIN_PIN PG13 // E1DET
#define U_MIN_PIN PG14 // E2DET
#define V_MIN_PIN PG15 // E3DET
```