Add next/back btns

This commit is contained in:
Endorphin3D
2023-05-14 16:01:19 -04:00
parent 348af3dff8
commit fc17fd1c41
5 changed files with 76 additions and 5 deletions

View File

@@ -88,6 +88,66 @@
.w-max { width: max-content; }
.w-fit { width: fit-content; }
.max-w-0 { width: 0px; }
.max-w-1 { width: 0.25rem; }
.max-w-2 { width: 0.5rem; }
.max-w-3 { width: 0.75rem; }
.max-w-4 { width: 1rem; }
.max-w-5 { width: 1.25rem; }
.max-w-6 { width: 1.5rem; }
.max-w-7 { width: 1.75rem; }
.max-w-8 { width: 2rem; }
.max-w-9 { width: 2.25rem; }
.max-w-10 { width: 2.5rem; }
.max-w-11 { width: 2.75rem; }
.max-w-12 { width: 3rem; }
.max-w-14 { width: 3.5rem; }
.max-w-16 { width: 4rem; }
.max-w-20 { width: 5rem; }
.max-w-24 { width: 6rem; }
.max-w-28 { width: 7rem; }
.max-w-32 { width: 8rem; }
.max-w-36 { width: 9rem; }
.max-w-40 { width: 10rem; }
.max-w-44 { width: 11rem; }
.max-w-48 { width: 12rem; }
.max-w-52 { width: 13rem; }
.max-w-56 { width: 14rem; }
.max-w-60 { width: 15rem; }
.max-w-64 { width: 16rem; }
.max-w-72 { width: 18rem; }
.max-w-80 { width: 20rem; }
.max-w-96 { width: 24rem; }
.max-w-112 { width: 28rem; }
.max-w-px { width: 1px; }
.max-w-1_2 { width: 50%; }
.max-w-1_3 { width: 33.333333%; }
.max-w-2_3 { width: 66.666667%; }
.max-w-1_4 { width: 25%; }
.max-w-2_4 { width: 50%; }
.max-w-3_4 { width: 75%; }
.max-w-1_5 { width: 20%; }
.max-w-2_5 { width: 40%; }
.max-w-3_5 { width: 60%; }
.max-w-4_5 { width: 80%; }
.max-w-1_6 { width: 16.666667%; }
.max-w-2_6 { width: 33.333333%; }
.max-w-3_6 { width: 50%; }
.max-w-4_6 { width: 66.666667%; }
.max-w-5_6 { width: 83.333333%; }
.max-w-1_12 { width: 8.333333%; }
.max-w-2_12 { width: 16.666667%; }
.max-w-3_12 { width: 25%; }
.max-w-4_12 { width: 33.333333%; }
.max-w-5_12 { width: 41.666667%; }
.max-w-6_12 { width: 50%; }
.max-w-7_12 { width: 58.333333%; }
.max-w-8_12 { width: 66.666667%; }
.max-w-9_12 { width: 75%; }
.max-w-10_12 { width: 83.333333%; }
.max-w-11_12 { width: 91.666667%; }
.max-w-full { width: 100%; }
.h-0 { height: 0px; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
@@ -118,6 +178,7 @@
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-112 { height: 28rem; }
.h-px { height: 1px; }
.clear-left { clear: left; }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 93 KiB

View File

@@ -3,7 +3,7 @@ layout: default
title: Getting Started
nav_order: 1
permalink: docs/getting-started
has_toc: true
has_toc: false
---
## Kinematic
@@ -11,7 +11,7 @@ has_toc: true
The Endorphin uses a slightly different belt setup from the original Ender 5, known as the "Markforged kinematic" or a Hybrid CoreXY. In this setup the X belt moves like a CoreXY but the Y axis remains in its original Ender 5 cartesian style--one of the main reasons why the Endorphin is is so much faster to build than a CoreXY.
![Belt path](/assets/images/docs/getting-started/belt-path.png)
{: .w-3_5 }
{: .max-w-112 }
Now, if you know anything about CoreXY machines you know that unlike cartesian printers, CoreXY printers don't have an "X stepper" or a "Y stepper" because a movement of one stepper affects both belts. In the Markforged kinematic, this is only sometimes true:
@@ -20,7 +20,7 @@ Now, if you know anything about CoreXY machines you know that unlike cartesian p
- BUT when the Y stepper moves the gantry, the length of the X belt on either side of the gantry is affected and the X stepper must also move to compensate
![Kinematic](/assets/images/docs/getting-started/kinematic.png)
{: .w-2_5 }
{: .max-w-96 }
Luckily this kinematic is supported by both Klipper and the stock Marlin firmware (with a small modification).
@@ -63,4 +63,8 @@ You'll want to un-comment this line, like so:
#define MARKFORGED_XY
```
Now you can continue following the Marlin guide exactly as you normally would. Once you've compiled, you can put the new firmware file (usually `firmware.bin`) at the root of your microSD card. Just to be 100% certain the printer will recognize the new firmware, rename the file `firmware-endorphin.bin`. Then with your printer powered off, insert the SD card and power the printer on. Wait a few minutes to ensure the install finishes, then power the printer down and remove the card. Delete `firmware-endorphin.bin` and you're done!
Now you can continue following the Marlin guide exactly as you normally would. Once you've compiled, you can put the new firmware file (usually `firmware.bin`) at the root of your microSD card. Just to be 100% certain the printer will recognize the new firmware, rename the file `firmware-endorphin.bin`. Then with your printer powered off, insert the SD card and power the printer on. Wait a few minutes to ensure the install finishes, then power the printer down and remove the card. Delete `firmware-endorphin.bin` and you're done!
---
[Next →](/docs/stages){: .btn .btn-outline .fs-5 }

View File

@@ -62,4 +62,8 @@ If you're using a direct drive extruder, you can make use of your old extruder s
In fact, even if you *are* running the original extruder, you can still swap the extruder and X motors without issue. As long as your hotend is able to keep up with the filament feed rate, your extruder stepper doesn't need an enormous amount of torque.
## Tune Stepper Current
## Tune Stepper Current
---
[← Back](/docs/stages){: .btn .btn-outline .mr-4 .fs-5 } [Next →](/docs/stages/stage-2){: .btn .btn-outline .fs-5 }

View File

@@ -24,4 +24,6 @@ Endorphin was designed to be progressively upgraded--so you can get started with
---
[← Back](/docs/getting-started){: .btn .btn-outline .mr-4 .fs-5 } [Next →](/docs/stages/stage-1){: .btn .btn-outline .fs-5 }
[^1]: Because stage 3 adds a linear rail to the X axis, the weight of the new rail does negate the weight saved by dropping the v-slot printhead carriage. This stage isn't as much about dropping weight as the other two stages were. The benefits of this stage are mainly more print consistency on the X axis, access to the awesome Ratrig and Vz printheads, and complete liberation from those v-slot wheels.