-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05a8456
commit 10aa98d
Showing
18 changed files
with
557 additions
and
11 deletions.
There are no files selected for viewing
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,39 @@ | ||
<div class="leveling"> | ||
<div class="leveling-wrapper" [ngClass]="{ 'leveling-wrapper-fadeout': fadeOutAnimation }"> | ||
<div class="leveling-container"> | ||
<img src="assets/error.svg" class="leveling__close" (click)="hideScreen()" /> | ||
<div class="leveling__content" #levelingMain> | ||
<span class="leveling__heading" i18n="@@leveling">Level Corners</span> | ||
<div class="flex-row-multicolum"> | ||
<div class="flex-col border-bottom" (click)="buttonClick(0)"> | ||
<!-- Home --> | ||
<img src="assets/home.svg" class="level_icon" /> | ||
</div> | ||
<div class="flex-col border-left" (click)="buttonClick(4)" > | ||
<!-- Rear Left --> | ||
<img src="assets/rl.svg" class="level_icon" /> | ||
</div> | ||
<div class="flex-col" (click)="buttonClick(3)" > | ||
<!-- Rear Right --> | ||
<img src="assets/rr.svg" class="level_icon" /> | ||
</div> | ||
</div> | ||
<div class="flex-row-multicolum"> | ||
<div class="flex-col" (click)="buttonClick(5)" > | ||
<!-- Center --> | ||
<img src="assets/c.svg" class="level_icon" /> | ||
</div> | ||
<div class="flex-col border-left" (click)="buttonClick(1)"> | ||
<!-- Front Left --> | ||
<img src="assets/fl.svg" class="level_icon" /> | ||
</div> | ||
<div class="flex-col" (click)="buttonClick(2)"> | ||
<!-- Front Right --> | ||
<img src="assets/fr.svg" class="level_icon" /> | ||
</div> | ||
</div> | ||
<span class="homing-text" *ngIf="isHomingNeeded">Homing is needed before starting leveling.</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.
10aa98d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@makers-cave is the command being used to run the leveling configurable? Reason I ask is because from my experience with Bed Level Visualizer, there are lots of options out there for various firmware.
Also, not sure how smart it is to make bed leveling a default custom action.
10aa98d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jneilliii This is more of a corner leveling (Manual Bed Leveling). The action will open a popup with 6 buttons. Home, all 4 corners, and center. The home button calls G28, 5 point button calls G0 with corresponding corner and center coordinates. The width and depth of the printer profile are used to calculate coordinates.
10aa98d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh cool, sorry didn't really look at the code to see what it was doing.