-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #622 from brickify/feature/newDownloadDialog
Test strip wizard
- Loading branch information
Showing
10 changed files
with
255 additions
and
52 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#downloadModal(tabindex='-1').modal.fade | ||
.modal-dialog | ||
.modal-content | ||
.modal-header | ||
button(data-dismiss='modal').close × | ||
h4.modal-title.disabled Download | ||
.modal-body | ||
#testStripContent | ||
include testStripWizard.jade | ||
#stlContent | ||
.btn.btn-success.btn-block.disabled#stlDownloadButton. | ||
Download stl for 3D printer | ||
#legoContent | ||
h4.disabled Download instructions | ||
.btn.btn-success.btn-block.disabled#downloadInstructionsButton. | ||
Download LEGO instructions and scad file | ||
.modal-footer | ||
button(data-dismiss='modal').btn.btn-primary.disabled Close | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
h4.disabled Download stl for 3d printer | ||
#sizeSelect | ||
p. | ||
Please enter your printer type: | ||
.row | ||
.col-sm-6 | ||
select.form-control#studSizeSelect | ||
.col-sm-6 | ||
select.form-control#holeSizeSelect | ||
br | ||
p. | ||
If you don't know your printer's type, use our wizard to find it out: | ||
button.btn.btn-primary.btn-block#startWizard Start wizard | ||
br | ||
#wizardStepIntro | ||
p. | ||
Every 3D-printer is different and produces slightly differnt 3D-printed objects. | ||
Therefore, to ensure a good fit between the 3D-printed parts and your LEGO-bricks, | ||
you need to calibrate your printer. | ||
p. | ||
For the calibration, download the #[a(href='download/testStrip.zip') test strip] and print it. | ||
#wizardStepStuds | ||
p. | ||
Try to connect the test strip studs into a LEGO-brick. Which size fits best? | ||
img(src='img/testStripWizard-studSize.png') | ||
p.wizardSelect This size fits best: | ||
select.form-control#wizardStudSizeSelect | ||
#wizardStepHoles | ||
p. | ||
Now connect the LEGO-brick studs into the test strip. Which size fits best? | ||
img(src='img/testStripWizard-holeSize.png') | ||
p.wizardSelect This size fits best: | ||
select.form-control#wizardHoleSizeSelect | ||
#wizardStepFinished | ||
p. | ||
You're all set! If you don't change your 3D-printer's settings, you can re-use | ||
the calibration settings for further prints. | ||
p#calibrationResult | ||
| Your calibration settings: | ||
br | ||
strong#calibrationSettings A 4 | ||
|
||
#wizardButtons | ||
br | ||
.row | ||
.col-sm-6 | ||
button.btn.btn-primary.btn-block#wizardBack | ||
span #[i.fa.fa-chevron-left] | ||
span#text Go back | ||
.col-sm-6 | ||
button.btn.btn-primary.btn-block#wizardNext | ||
span#text Next step | ||
span #[i.fa.fa-chevron-right] | ||
br |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters