Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filament Change Process #642

Merged
merged 23 commits into from
May 15, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add settings
  • Loading branch information
UnchartedBull committed May 15, 2020
commit 493596e4c5324964db70bf8938c0712c65124d74
12 changes: 12 additions & 0 deletions src/app/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,19 @@
[(ngModel)]="config.filament.feedSpeed" required>
</td>
</tr>
<tr>
<td style="width: 25.6vw; display: block">
<label for="filament-feed-speed-slow" class="settings__input-label">Feed Speed Slow
<span>(mm/s)</span></label>
<input type="number" id="filament-feed-speed-slow" class="settings__input"
name="filament-feed-speed-slow" style="width: 19vw"
[(ngModel)]="config.filament.feedSpeedSlow" required>
</td>
</tr>
</table>
<div class="filament-feed-speed-info">Please set these values carefully, as they possibly
can destroy parts of your printer, just don't set your FeedSpeed to high and your Bowden
Length to long.</div>
</form>
<br>
</div>
Expand Down
7 changes: 7 additions & 0 deletions src/app/settings/settings.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,13 @@
}
}

.filament-feed-speed-info {
font-size: 1.7vw;
text-align: justify;
opacity: 0.7;
font-style: italic;
}

@keyframes fadein {
from {
opacity: 0;
Expand Down
2 changes: 0 additions & 2 deletions src/app/settings/settings.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//TODO: include feedLength and stuff

import { Component, ElementRef, EventEmitter, OnInit, Output, ViewChild } from '@angular/core';

import { AppService } from '../app.service';
Expand Down