| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>BambuTrack Control - v6 Exact Match</title>
- <style>
- * { margin: 0; padding: 0; box-sizing: border-box; }
- :root {
- --bg-main: #f5f5f5;
- --bg-white: #ffffff;
- --bg-light: #fafafa;
- --bg-panel: #f0f0f0;
- --bg-hover: #e8e8e8;
- --text-primary: #333333;
- --text-secondary: #666666;
- --text-muted: #999999;
- --border: #e0e0e0;
- --border-light: #eeeeee;
- --accent: #00ae42;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
- background: var(--bg-main);
- color: var(--text-primary);
- font-size: 13px;
- }
- .main-layout {
- display: grid;
- grid-template-columns: 1fr 380px;
- height: 100vh;
- }
- /* Left Panel */
- .left-panel {
- display: flex;
- flex-direction: column;
- background: var(--bg-main);
- }
- .camera-header {
- display: flex;
- align-items: center;
- padding: 8px 12px;
- background: var(--bg-white);
- border-bottom: 1px solid var(--border);
- gap: 8px;
- }
- .camera-title {
- font-size: 13px;
- color: var(--text-primary);
- margin-right: auto;
- }
- .icon-btn {
- width: 28px;
- height: 28px;
- border: none;
- background: none;
- cursor: pointer;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: var(--text-muted);
- }
- .icon-btn:hover { background: var(--bg-hover); }
- .icon-btn img { width: 18px; height: 18px; opacity: 0.6; }
- .camera-feed {
- flex: 1;
- background: #1a1a1a;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #555;
- font-size: 14px;
- }
- /* Print Progress */
- .print-progress {
- background: var(--bg-white);
- border-top: 1px solid var(--border);
- padding: 16px 20px;
- }
- .progress-label {
- font-size: 12px;
- color: var(--text-muted);
- margin-bottom: 10px;
- }
- .progress-row {
- display: flex;
- gap: 14px;
- align-items: center;
- }
- .progress-thumb {
- width: 54px;
- height: 54px;
- background: var(--bg-light);
- border: 1px solid var(--border);
- border-radius: 6px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .progress-thumb img { width: 32px; opacity: 0.4; }
- .progress-info { flex: 1; }
- .progress-name { font-weight: 500; font-size: 13px; margin-bottom: 2px; }
- .progress-status { color: var(--accent); font-size: 12px; margin-bottom: 8px; }
- .progress-bar-bg {
- height: 4px;
- background: var(--border-light);
- border-radius: 2px;
- margin-bottom: 8px;
- }
- .progress-bar-fill {
- height: 100%;
- background: var(--accent);
- border-radius: 2px;
- width: 0%;
- }
- .progress-meta {
- display: flex;
- gap: 20px;
- font-size: 11px;
- color: var(--text-muted);
- }
- .progress-btns {
- display: flex;
- gap: 6px;
- }
- .progress-btn {
- width: 32px;
- height: 32px;
- border: 1px solid var(--border);
- background: var(--bg-white);
- border-radius: 6px;
- cursor: pointer;
- font-size: 14px;
- color: var(--text-muted);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .progress-btn:hover { background: var(--bg-hover); }
- /* Right Panel */
- .right-panel {
- background: var(--bg-white);
- border-left: 1px solid var(--border);
- overflow-y: auto;
- }
- .control-header {
- display: flex;
- align-items: center;
- padding: 10px 14px;
- border-bottom: 1px solid var(--border);
- gap: 8px;
- }
- .control-title {
- font-size: 13px;
- margin-right: auto;
- }
- .header-btn {
- padding: 6px 14px;
- font-size: 12px;
- border: none;
- border-radius: 6px;
- cursor: pointer;
- background: var(--accent);
- color: white;
- }
- .header-btn:hover { background: #009938; }
- .control-body {
- padding: 14px;
- }
- /* Temperature Section */
- .temp-section {
- margin-bottom: 14px;
- }
- .temp-row {
- display: flex;
- align-items: center;
- gap: 8px;
- padding: 4px 0;
- }
- .temp-icon {
- width: 20px;
- height: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .temp-icon img { width: 18px; opacity: 0.6; }
- .temp-badge {
- font-size: 10px;
- font-weight: 700;
- color: var(--accent);
- background: #e8f5e9;
- padding: 2px 6px;
- border-radius: 4px;
- min-width: 18px;
- text-align: center;
- }
- .temp-value { font-size: 15px; font-weight: 500; }
- .temp-target { font-size: 14px; color: var(--text-muted); }
- /* Air Condition */
- .air-section {
- display: flex;
- align-items: center;
- gap: 12px;
- padding: 10px 0;
- border-top: 1px solid var(--border-light);
- border-bottom: 1px solid var(--border-light);
- margin-bottom: 14px;
- }
- .air-label {
- display: flex;
- align-items: center;
- gap: 6px;
- font-size: 12px;
- color: var(--text-secondary);
- }
- .air-label img { width: 16px; opacity: 0.5; }
- .air-item {
- display: flex;
- align-items: center;
- gap: 6px;
- padding: 6px 12px;
- background: var(--bg-light);
- border-radius: 6px;
- font-size: 12px;
- }
- .air-item img { width: 16px; opacity: 0.5; }
- .lamp-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
- /* Movement Section */
- .movement-section {
- display: flex;
- gap: 16px;
- margin-bottom: 16px;
- }
- .jog-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .jog-pad {
- position: relative;
- width: 110px;
- height: 110px;
- }
- .jog-ring {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
- border: 1px solid var(--border);
- position: relative;
- }
- .jog-label {
- position: absolute;
- font-size: 10px;
- color: var(--text-muted);
- font-weight: 500;
- }
- .jog-label.top { top: 8px; left: 50%; transform: translateX(-50%); }
- .jog-label.bottom { bottom: 8px; left: 50%; transform: translateX(-50%); }
- .jog-label.left { left: 8px; top: 50%; transform: translateY(-50%); }
- .jog-label.right { right: 8px; top: 50%; transform: translateY(-50%); }
- .jog-btn {
- position: absolute;
- width: 24px;
- height: 24px;
- background: var(--bg-light);
- border: 1px solid var(--border);
- border-radius: 4px;
- cursor: pointer;
- font-size: 10px;
- color: var(--text-muted);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .jog-btn:hover { background: var(--bg-hover); color: var(--text-primary); }
- .jog-btn.up { top: 20px; left: 50%; transform: translateX(-50%); }
- .jog-btn.down { bottom: 20px; left: 50%; transform: translateX(-50%); }
- .jog-btn.left { left: 20px; top: 50%; transform: translateY(-50%); }
- .jog-btn.right { right: 20px; top: 50%; transform: translateY(-50%); }
- .jog-home {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 36px;
- height: 36px;
- border-radius: 50%;
- background: var(--accent);
- border: none;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .jog-home:hover { background: #009938; }
- .jog-home img { width: 18px; filter: brightness(0) invert(1); }
- /* Step Buttons */
- .step-section {
- display: flex;
- flex-direction: column;
- gap: 4px;
- }
- .step-row {
- display: flex;
- gap: 8px;
- align-items: center;
- }
- .step-btn {
- padding: 6px 10px;
- background: var(--bg-light);
- border: 1px solid var(--border);
- border-radius: 6px;
- cursor: pointer;
- font-size: 11px;
- color: var(--text-secondary);
- min-width: 44px;
- text-align: center;
- }
- .step-btn:hover { background: var(--bg-hover); }
- .step-btn.active { background: var(--bg-hover); border-color: var(--text-muted); }
- .step-label {
- font-size: 11px;
- color: var(--text-muted);
- text-align: center;
- padding: 4px 0;
- }
- /* Extruder Section */
- .extruder-section {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 6px;
- }
- .nozzle-toggle {
- display: flex;
- border-radius: 6px;
- overflow: hidden;
- border: 1px solid var(--border);
- }
- .nozzle-toggle button {
- padding: 6px 16px;
- border: none;
- background: var(--bg-white);
- font-size: 11px;
- cursor: pointer;
- color: var(--text-secondary);
- }
- .nozzle-toggle button:first-child { border-right: 1px solid var(--border); }
- .nozzle-toggle button.active { background: var(--accent); color: white; }
- .extruder-graphic {
- height: 80px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .extruder-graphic img { height: 100%; }
- .extruder-label { font-size: 11px; color: var(--text-muted); }
- .ext-controls {
- display: flex;
- flex-direction: column;
- gap: 4px;
- }
- .ext-btn {
- width: 28px;
- height: 28px;
- background: var(--bg-light);
- border: 1px solid var(--border);
- border-radius: 6px;
- cursor: pointer;
- font-size: 12px;
- color: var(--text-muted);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .ext-btn:hover { background: var(--bg-hover); }
- /* ========== AMS SECTION ========== */
- .ams-section {
- border-top: 1px solid var(--border-light);
- padding-top: 14px;
- }
- /* Nozzle Filament Boxes */
- .nozzle-filament-row {
- display: flex;
- gap: 8px;
- margin-bottom: 12px;
- }
- .nozzle-filament-box {
- display: flex;
- align-items: center;
- gap: 6px;
- padding: 8px 12px;
- background: var(--bg-white);
- border: 2px solid var(--border);
- border-radius: 8px;
- cursor: pointer;
- }
- .nozzle-filament-box:hover { border-color: #ccc; }
- .nozzle-filament-box.active { border-color: var(--accent); }
- .filament-dots {
- display: flex;
- gap: 4px;
- }
- .f-dot {
- width: 18px;
- height: 18px;
- border-radius: 4px;
- border: 1px solid rgba(0,0,0,0.1);
- }
- .f-dot.empty {
- background: #eee !important;
- border: 1px dashed #ccc;
- }
- .f-dot-separator {
- width: 1px;
- height: 18px;
- background: #ccc;
- margin: 0 2px;
- }
- .filament-count {
- font-size: 12px;
- color: var(--text-muted);
- padding: 2px 8px;
- background: var(--bg-light);
- border-radius: 4px;
- margin-left: auto;
- }
- .filament-count.active {
- background: var(--accent);
- color: white;
- }
- /* AMS Tabs (for multiple AMS units) */
- .ams-tabs {
- display: flex;
- gap: 6px;
- margin-bottom: 8px;
- }
- .ams-tab {
- display: flex;
- align-items: center;
- gap: 4px;
- padding: 6px 10px;
- background: var(--bg-light);
- border: 2px solid transparent;
- border-radius: 8px;
- cursor: pointer;
- font-size: 11px;
- color: var(--text-secondary);
- }
- .ams-tab:hover { background: var(--bg-hover); }
- .ams-tab.active { border-color: var(--accent); }
- .ams-tab-dots {
- display: flex;
- gap: 2px;
- }
- .ams-tab-dot {
- width: 10px;
- height: 10px;
- border-radius: 2px;
- border: 1px solid rgba(0,0,0,0.08);
- }
- /* AMS Content Panel */
- .ams-content {
- background: var(--bg-panel);
- border-radius: 12px;
- padding: 14px;
- }
- /* AMS Info Row */
- .ams-info-row {
- display: flex;
- align-items: center;
- gap: 10px;
- margin-bottom: 10px;
- }
- .ams-humidity {
- display: flex;
- align-items: center;
- gap: 5px;
- font-size: 13px;
- color: var(--text-secondary);
- }
- .ams-humidity img { width: 16px; opacity: 0.5; }
- .ams-humidity .sun { font-size: 16px; color: #f5a623; }
- /* AMS Main Area */
- .ams-main {
- display: flex;
- gap: 20px;
- }
- /* AMS Slots Container */
- .ams-slots-container {
- flex: 1;
- }
- /* Slot Labels Row */
- .slot-labels-row {
- display: flex;
- gap: 8px;
- margin-bottom: 6px;
- padding-left: 4px;
- }
- .slot-label-item {
- width: 56px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .slot-label-badge {
- display: flex;
- align-items: center;
- gap: 2px;
- padding: 3px 6px;
- background: var(--bg-white);
- border: 1px solid var(--border);
- border-radius: 12px;
- font-size: 10px;
- color: var(--text-muted);
- }
- .slot-label-badge .arrow { font-size: 8px; }
- /* AMS Slots */
- .ams-slots {
- display: flex;
- gap: 8px;
- }
- .ams-slot {
- width: 56px;
- height: 80px;
- border-radius: 10px;
- overflow: hidden;
- cursor: pointer;
- border: 2px solid var(--border);
- display: flex;
- flex-direction: column;
- position: relative;
- }
- .ams-slot:hover { border-color: #bbb; }
- .ams-slot.active { border-color: #d4a84b; }
- .ams-slot.selected { border-color: var(--accent); }
- .ams-slot-fill {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-end;
- padding-bottom: 8px;
- position: relative;
- }
- .ams-slot-type {
- font-size: 12px;
- font-weight: 600;
- color: white;
- text-shadow: 0 1px 2px rgba(0,0,0,0.3);
- margin-bottom: 4px;
- }
- .ams-slot-type.dark { color: #333; text-shadow: none; }
- .ams-slot-eye {
- width: 20px;
- height: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .ams-slot-eye img {
- width: 16px;
- height: 16px;
- opacity: 0.8;
- }
- .ams-slot-eye.invert img { filter: invert(1); }
- .ams-slot-empty {
- flex: 1;
- background: var(--bg-white);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: var(--text-muted);
- font-size: 18px;
- }
- .ams-slot-empty .angle { font-size: 14px; margin-top: 4px; }
- /* Connector Lines */
- .ams-connectors {
- display: flex;
- justify-content: flex-start;
- padding: 0 4px;
- margin-top: 6px;
- }
- .connector-lines {
- display: flex;
- gap: 8px;
- position: relative;
- }
- .connector-line {
- width: 56px;
- display: flex;
- justify-content: center;
- }
- .connector-line .vline {
- width: 2px;
- height: 16px;
- background: #c0c0c0;
- }
- .connector-hbar {
- position: absolute;
- bottom: 0;
- left: 28px;
- right: 28px;
- height: 2px;
- background: #c0c0c0;
- }
- /* Hub Row */
- .hub-row {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 0 4px;
- margin-top: -1px;
- }
- .hub-line-left {
- width: calc(112px + 4px);
- height: 2px;
- background: #c0c0c0;
- }
- .hub-graphic {
- display: flex;
- align-items: center;
- padding: 4px 6px;
- background: var(--bg-white);
- border: 1px solid var(--border);
- border-radius: 4px;
- }
- .hub-port {
- width: 10px;
- height: 14px;
- background: var(--accent);
- border-radius: 2px;
- margin: 0 2px;
- }
- .hub-line-right {
- width: 40px;
- height: 2px;
- background: #c0c0c0;
- }
- /* External Spool Section */
- .ext-spool-section {
- display: flex;
- flex-direction: column;
- align-items: center;
- min-width: 100px;
- }
- .ext-label {
- font-size: 13px;
- color: var(--text-secondary);
- margin-bottom: 6px;
- }
- .ext-content {
- display: flex;
- gap: 8px;
- align-items: flex-start;
- }
- .ext-slot {
- width: 56px;
- height: 80px;
- background: var(--bg-white);
- border: 2px solid var(--border);
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- color: var(--text-muted);
- }
- .ext-slot:hover { border-color: #bbb; }
- .ext-slot .question { font-size: 20px; }
- .ext-slot .angle { font-size: 14px; margin-top: 4px; }
- .ext-connector {
- width: 2px;
- height: 22px;
- background: #c0c0c0;
- margin-top: 6px;
- }
- .spool-holder-graphic {
- width: 80px;
- height: 100px;
- }
- .spool-holder-graphic img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
- /* AMS Actions */
- .ams-actions {
- display: flex;
- align-items: center;
- gap: 10px;
- margin-top: 12px;
- }
- .auto-refill-btn {
- display: flex;
- align-items: center;
- gap: 6px;
- padding: 10px 16px;
- background: var(--bg-white);
- border: 1px solid var(--border);
- border-radius: 8px;
- cursor: pointer;
- font-size: 13px;
- color: var(--text-secondary);
- }
- .auto-refill-btn:hover { background: var(--bg-hover); }
- .ams-settings-btn {
- width: 36px;
- height: 36px;
- background: var(--bg-white);
- border: 1px solid var(--border);
- border-radius: 8px;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .ams-settings-btn:hover { background: var(--bg-hover); }
- .ams-settings-btn img { width: 20px; opacity: 0.5; }
- .ams-spacer { flex: 1; }
- .ams-action-btn {
- padding: 10px 24px;
- border-radius: 8px;
- font-size: 13px;
- cursor: pointer;
- border: none;
- background: #e0e0e0;
- color: var(--text-secondary);
- }
- .ams-action-btn:hover { background: #d5d5d5; }
- </style>
- </head>
- <body>
- <div class="main-layout">
- <!-- Left Panel -->
- <div class="left-panel">
- <div class="camera-header">
- <span class="camera-title">Camera</span>
- <button class="icon-btn"><img src="icons/video-camera.svg"></button>
- <button class="icon-btn"><img src="icons/webcam.svg"></button>
- <button class="icon-btn"><img src="icons/settings.svg"></button>
- <button class="icon-btn"><img src="icons/reload.svg"></button>
- </div>
- <div class="camera-feed">Camera Feed</div>
- <div class="print-progress">
- <div class="progress-label">Printing Progress</div>
- <div class="progress-row">
- <div class="progress-thumb"><img src="icons/micro-sd.svg"></div>
- <div class="progress-info">
- <div class="progress-name">N/A</div>
- <div class="progress-status">N/A</div>
- <div class="progress-bar-bg"><div class="progress-bar-fill"></div></div>
- <div class="progress-meta">
- <span>Layer: N/A</span>
- <span>N/A</span>
- </div>
- <div class="progress-meta">Estimated finish time: N/A</div>
- </div>
- <div class="progress-btns">
- <button class="progress-btn">⌂</button>
- <button class="progress-btn">⏸</button>
- <button class="progress-btn">■</button>
- </div>
- </div>
- </div>
- </div>
- <!-- Right Panel -->
- <div class="right-panel">
- <div class="control-header">
- <span class="control-title">Control</span>
- <button class="header-btn">Printer Parts</button>
- <button class="header-btn">Print Options</button>
- <button class="header-btn">Calibration</button>
- </div>
- <div class="control-body">
- <!-- Temperature -->
- <div class="temp-section">
- <div class="temp-row">
- <div class="temp-icon"><img src="icons/hotend.svg"></div>
- <span class="temp-badge">L</span>
- <span class="temp-value">22</span>
- <span class="temp-target">/0 °C</span>
- </div>
- <div class="temp-row">
- <div class="temp-icon"><img src="icons/hotend.svg"></div>
- <span class="temp-badge">R</span>
- <span class="temp-value">21</span>
- <span class="temp-target">/0 °C</span>
- </div>
- <div class="temp-row">
- <div class="temp-icon"><img src="icons/heatbed.svg"></div>
- <span class="temp-value">21</span>
- <span class="temp-target">/0 °C</span>
- </div>
- <div class="temp-row">
- <div class="temp-icon"><img src="icons/chamber.svg"></div>
- <span class="temp-value">21</span>
- <span class="temp-target">/0 °C</span>
- </div>
- </div>
- <!-- Air Condition -->
- <div class="air-section">
- <div class="air-label"><img src="icons/ventilation.svg"> Air Condition</div>
- <div class="air-item"><img src="icons/ventilation.svg"> 100%</div>
- <div class="air-item">Lamp <div class="lamp-dot"></div></div>
- </div>
- <!-- Movement -->
- <div class="movement-section">
- <div class="jog-container">
- <div class="jog-pad">
- <div class="jog-ring">
- <span class="jog-label top">Y</span>
- <span class="jog-label bottom">-Y</span>
- <span class="jog-label left">-X</span>
- <span class="jog-label right">X</span>
- <button class="jog-btn up">▲</button>
- <button class="jog-btn down">▼</button>
- <button class="jog-btn left">◀</button>
- <button class="jog-btn right">▶</button>
- <button class="jog-home"><img src="icons/home.svg"></button>
- </div>
- </div>
- </div>
- <div class="step-section">
- <div class="step-row">
- <button class="step-btn">↑ 10</button>
- <button class="step-btn active">↑ 1</button>
- </div>
- <div class="step-label">Bed</div>
- <div class="step-row">
- <button class="step-btn">↓ 1</button>
- <button class="step-btn">↓ 10</button>
- </div>
- </div>
- <div class="extruder-section">
- <div class="nozzle-toggle">
- <button class="active">Left</button>
- <button>Right</button>
- </div>
- <div class="extruder-graphic"><img src="icons/dual-extruder.png"></div>
- <span class="extruder-label">Extruder</span>
- <div class="ext-controls">
- <button class="ext-btn">▲</button>
- <button class="ext-btn">▼</button>
- </div>
- </div>
- </div>
- <!-- AMS Section -->
- <div class="ams-section">
- <!-- Nozzle Filament Assignment Boxes -->
- <div class="nozzle-filament-row">
- <div class="nozzle-filament-box active">
- <div class="filament-dots">
- <div class="f-dot" style="background: #FFD700;"></div>
- <div class="f-dot" style="background: #8B4513;"></div>
- <div class="f-dot" style="background: #1a1a1a;"></div>
- <div class="f-dot" style="background: #222;"></div>
- </div>
- </div>
- <div class="nozzle-filament-box">
- <div class="filament-dots">
- <div class="f-dot" style="background: #1a1a1a;"></div>
- <div class="f-dot" style="background: #1a1a1a;"></div>
- <div class="f-dot-separator"></div>
- <div class="f-dot" style="background: #FF0000;"></div>
- </div>
- <span class="filament-count">0</span>
- </div>
- <div class="nozzle-filament-box">
- <div class="filament-dots">
- <div class="f-dot empty"></div>
- <div class="f-dot empty"></div>
- <div class="f-dot empty"></div>
- </div>
- <span class="filament-count active">0</span>
- </div>
- </div>
- <!-- AMS Content Panel -->
- <div class="ams-content">
- <!-- Info Row -->
- <div class="ams-info-row">
- <div class="ams-humidity"><img src="icons/water.svg"> 18 %</div>
- <div class="ams-humidity"><span class="sun">☼</span></div>
- </div>
- <!-- Main AMS Area -->
- <div class="ams-main">
- <!-- AMS Slots Container -->
- <div class="ams-slots-container">
- <!-- Slot Labels -->
- <div class="slot-labels-row">
- <div class="slot-label-item">
- <div class="slot-label-badge">A1 <span class="arrow">↓</span></div>
- </div>
- <div class="slot-label-item">
- <div class="slot-label-badge">A2 <span class="arrow">↓</span></div>
- </div>
- <div class="slot-label-item">
- <div class="slot-label-badge">A3 <span class="arrow">↓</span></div>
- </div>
- <div class="slot-label-item">
- <div class="slot-label-badge">A4 <span class="arrow">↓</span></div>
- </div>
- </div>
- <!-- Slots -->
- <div class="ams-slots">
- <div class="ams-slot active">
- <div class="ams-slot-fill" style="background: #FFD700;">
- <span class="ams-slot-type dark">PLA</span>
- <div class="ams-slot-eye"><img src="icons/eye.svg"></div>
- </div>
- </div>
- <div class="ams-slot">
- <div class="ams-slot-fill" style="background: #1a1a1a;">
- <span class="ams-slot-type">PETG</span>
- <div class="ams-slot-eye invert"><img src="icons/eye.svg"></div>
- </div>
- </div>
- <div class="ams-slot">
- <div class="ams-slot-fill" style="background: #8B4513;">
- <span class="ams-slot-type">PETG</span>
- <div class="ams-slot-eye invert"><img src="icons/eye.svg"></div>
- </div>
- </div>
- <div class="ams-slot">
- <div class="ams-slot-fill" style="background: #222;">
- <span class="ams-slot-type">PLA</span>
- <div class="ams-slot-eye invert"><img src="icons/eye.svg"></div>
- </div>
- </div>
- </div>
- <!-- Connectors -->
- <div class="ams-connectors">
- <div class="connector-lines">
- <div class="connector-line"><div class="vline"></div></div>
- <div class="connector-line"><div class="vline"></div></div>
- <div class="connector-line"><div class="vline"></div></div>
- <div class="connector-line"><div class="vline"></div></div>
- <div class="connector-hbar"></div>
- </div>
- </div>
- <!-- Hub -->
- <div class="hub-row">
- <div class="hub-line-left"></div>
- <div class="hub-graphic">
- <div class="hub-port"></div>
- <div class="hub-port"></div>
- </div>
- <div class="hub-line-right"></div>
- </div>
- </div>
- <!-- External Spool Section -->
- <div class="ext-spool-section">
- <div class="ext-label">Ext</div>
- <div class="ext-content">
- <div style="display: flex; flex-direction: column; align-items: center;">
- <div class="ext-slot">
- <span class="question">?</span>
- <span class="angle">∠</span>
- </div>
- <div class="ext-connector"></div>
- </div>
- <div class="spool-holder-graphic">
- <img src="icons/single-extruder1.png">
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- AMS Actions -->
- <div class="ams-actions">
- <button class="auto-refill-btn">Auto-refill</button>
- <button class="ams-settings-btn"><img src="icons/ams-settings.svg"></button>
- <div class="ams-spacer"></div>
- <button class="ams-action-btn">Unload</button>
- <button class="ams-action-btn">Load</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|