control-page-v5.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>BambuTrack Control - Exact Match</title>
  7. <style>
  8. * { margin: 0; padding: 0; box-sizing: border-box; }
  9. :root {
  10. --bg-main: #f5f5f5;
  11. --bg-white: #ffffff;
  12. --bg-light: #fafafa;
  13. --bg-hover: #f0f0f0;
  14. --text-primary: #333333;
  15. --text-secondary: #666666;
  16. --text-muted: #999999;
  17. --border: #e0e0e0;
  18. --border-light: #eeeeee;
  19. --accent: #00ae42;
  20. }
  21. body {
  22. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  23. background: var(--bg-main);
  24. color: var(--text-primary);
  25. font-size: 13px;
  26. }
  27. .main-layout {
  28. display: grid;
  29. grid-template-columns: 1fr 340px;
  30. height: 100vh;
  31. }
  32. /* Left Panel */
  33. .left-panel {
  34. display: flex;
  35. flex-direction: column;
  36. background: var(--bg-main);
  37. }
  38. .camera-header {
  39. display: flex;
  40. align-items: center;
  41. padding: 8px 12px;
  42. background: var(--bg-white);
  43. border-bottom: 1px solid var(--border);
  44. gap: 6px;
  45. }
  46. .camera-title {
  47. font-size: 12px;
  48. color: var(--text-secondary);
  49. margin-right: auto;
  50. }
  51. .icon-btn {
  52. width: 26px;
  53. height: 26px;
  54. border: none;
  55. background: none;
  56. cursor: pointer;
  57. border-radius: 4px;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. color: var(--text-muted);
  62. }
  63. .icon-btn:hover { background: var(--bg-hover); }
  64. .icon-btn img { width: 16px; height: 16px; opacity: 0.5; }
  65. .camera-feed {
  66. flex: 1;
  67. background: #1a1a1a;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. color: #555;
  72. font-size: 14px;
  73. }
  74. /* Print Progress */
  75. .print-progress {
  76. background: var(--bg-white);
  77. border-top: 1px solid var(--border);
  78. padding: 12px 16px;
  79. }
  80. .progress-label {
  81. font-size: 11px;
  82. color: var(--text-muted);
  83. margin-bottom: 8px;
  84. }
  85. .progress-row {
  86. display: flex;
  87. gap: 12px;
  88. align-items: center;
  89. }
  90. .progress-thumb {
  91. width: 50px;
  92. height: 50px;
  93. background: var(--bg-light);
  94. border: 1px solid var(--border);
  95. border-radius: 6px;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. }
  100. .progress-thumb img { width: 30px; opacity: 0.4; }
  101. .progress-info { flex: 1; }
  102. .progress-name { font-weight: 500; font-size: 13px; }
  103. .progress-status { color: var(--accent); font-size: 12px; margin: 2px 0 6px; }
  104. .progress-bar-bg {
  105. height: 3px;
  106. background: var(--border-light);
  107. border-radius: 2px;
  108. margin-bottom: 6px;
  109. }
  110. .progress-bar-fill {
  111. height: 100%;
  112. background: var(--accent);
  113. border-radius: 2px;
  114. width: 0%;
  115. }
  116. .progress-details {
  117. font-size: 11px;
  118. color: var(--text-muted);
  119. }
  120. .progress-btns {
  121. display: flex;
  122. gap: 4px;
  123. }
  124. .progress-btn {
  125. width: 28px;
  126. height: 28px;
  127. border: 1px solid var(--border);
  128. background: var(--bg-white);
  129. border-radius: 4px;
  130. cursor: pointer;
  131. font-size: 12px;
  132. color: var(--text-muted);
  133. }
  134. .progress-btn:hover { background: var(--bg-hover); }
  135. /* Right Panel */
  136. .right-panel {
  137. background: var(--bg-white);
  138. border-left: 1px solid var(--border);
  139. overflow-y: auto;
  140. }
  141. .control-header {
  142. display: flex;
  143. align-items: center;
  144. padding: 8px 12px;
  145. border-bottom: 1px solid var(--border);
  146. gap: 6px;
  147. }
  148. .control-title {
  149. font-size: 13px;
  150. margin-right: auto;
  151. }
  152. .header-btn {
  153. padding: 5px 12px;
  154. font-size: 11px;
  155. border: none;
  156. border-radius: 4px;
  157. cursor: pointer;
  158. background: var(--accent);
  159. color: white;
  160. }
  161. .control-body {
  162. padding: 12px;
  163. }
  164. /* Temperature */
  165. .temp-section {
  166. margin-bottom: 12px;
  167. }
  168. .temp-row {
  169. display: flex;
  170. align-items: center;
  171. gap: 8px;
  172. padding: 5px 0;
  173. }
  174. .temp-icon { width: 18px; height: 18px; }
  175. .temp-icon img { width: 100%; opacity: 0.6; }
  176. .temp-badge {
  177. font-size: 9px;
  178. font-weight: 700;
  179. color: var(--accent);
  180. background: #e8f5e9;
  181. padding: 1px 5px;
  182. border-radius: 3px;
  183. }
  184. .temp-value { font-size: 16px; font-weight: 500; }
  185. .temp-target { font-size: 14px; color: var(--text-muted); }
  186. /* Air Condition */
  187. .air-row {
  188. display: flex;
  189. align-items: center;
  190. gap: 10px;
  191. padding: 10px 0;
  192. border-top: 1px solid var(--border-light);
  193. border-bottom: 1px solid var(--border-light);
  194. margin-bottom: 12px;
  195. }
  196. .air-label {
  197. display: flex;
  198. align-items: center;
  199. gap: 6px;
  200. font-size: 12px;
  201. color: var(--text-secondary);
  202. }
  203. .air-label img { width: 14px; opacity: 0.5; }
  204. .air-item {
  205. display: flex;
  206. align-items: center;
  207. gap: 6px;
  208. padding: 5px 10px;
  209. background: var(--bg-light);
  210. border-radius: 6px;
  211. font-size: 12px;
  212. }
  213. .air-item img { width: 14px; opacity: 0.5; }
  214. .lamp-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
  215. /* Movement */
  216. .movement-section {
  217. display: flex;
  218. gap: 10px;
  219. margin-bottom: 16px;
  220. }
  221. .jog-pad {
  222. position: relative;
  223. width: 100px;
  224. height: 100px;
  225. }
  226. .jog-ring {
  227. width: 100%;
  228. height: 100%;
  229. border-radius: 50%;
  230. background: var(--bg-light);
  231. border: 1px solid var(--border);
  232. position: relative;
  233. }
  234. .jog-label {
  235. position: absolute;
  236. font-size: 9px;
  237. color: var(--text-muted);
  238. }
  239. .jog-label.top { top: 6px; left: 50%; transform: translateX(-50%); }
  240. .jog-label.bottom { bottom: 6px; left: 50%; transform: translateX(-50%); }
  241. .jog-label.left { left: 6px; top: 50%; transform: translateY(-50%); }
  242. .jog-label.right { right: 6px; top: 50%; transform: translateY(-50%); }
  243. .jog-arrow {
  244. position: absolute;
  245. width: 20px;
  246. height: 20px;
  247. background: none;
  248. border: none;
  249. cursor: pointer;
  250. font-size: 10px;
  251. color: var(--text-muted);
  252. }
  253. .jog-arrow:hover { color: var(--accent); }
  254. .jog-arrow.up { top: 18px; left: 50%; transform: translateX(-50%); }
  255. .jog-arrow.down { bottom: 18px; left: 50%; transform: translateX(-50%); }
  256. .jog-arrow.left { left: 18px; top: 50%; transform: translateY(-50%); }
  257. .jog-arrow.right { right: 18px; top: 50%; transform: translateY(-50%); }
  258. .jog-home {
  259. position: absolute;
  260. top: 50%;
  261. left: 50%;
  262. transform: translate(-50%, -50%);
  263. width: 32px;
  264. height: 32px;
  265. border-radius: 50%;
  266. background: var(--accent);
  267. border: none;
  268. cursor: pointer;
  269. display: flex;
  270. align-items: center;
  271. justify-content: center;
  272. }
  273. .jog-home img { width: 16px; filter: brightness(0) invert(1); }
  274. .step-col {
  275. display: flex;
  276. flex-direction: column;
  277. gap: 2px;
  278. font-size: 10px;
  279. }
  280. .step-btn {
  281. padding: 4px 8px;
  282. background: var(--bg-light);
  283. border: 1px solid var(--border);
  284. border-radius: 4px;
  285. cursor: pointer;
  286. font-size: 9px;
  287. color: var(--text-secondary);
  288. }
  289. .step-btn.active { background: var(--bg-hover); color: var(--text-primary); }
  290. .step-label { text-align: center; color: var(--text-muted); font-size: 9px; padding: 2px 0; }
  291. .extruder-col {
  292. display: flex;
  293. flex-direction: column;
  294. align-items: center;
  295. gap: 4px;
  296. }
  297. .nozzle-toggle {
  298. display: flex;
  299. border-radius: 4px;
  300. overflow: hidden;
  301. border: 1px solid var(--border);
  302. }
  303. .nozzle-toggle button {
  304. padding: 3px 12px;
  305. border: none;
  306. background: var(--bg-white);
  307. font-size: 10px;
  308. cursor: pointer;
  309. }
  310. .nozzle-toggle button.active { background: var(--accent); color: white; }
  311. .extruder-img { height: 70px; }
  312. .extruder-img img { height: 100%; }
  313. .extruder-label { font-size: 9px; color: var(--text-muted); }
  314. .ext-btns { display: flex; flex-direction: column; gap: 2px; }
  315. .ext-btn {
  316. width: 22px;
  317. height: 18px;
  318. background: var(--bg-light);
  319. border: 1px solid var(--border);
  320. border-radius: 3px;
  321. cursor: pointer;
  322. font-size: 8px;
  323. color: var(--text-muted);
  324. }
  325. /* AMS Section */
  326. .ams-section {
  327. border-top: 1px solid var(--border-light);
  328. padding-top: 12px;
  329. }
  330. /* Nozzle Color Boxes */
  331. .nozzle-boxes {
  332. display: flex;
  333. gap: 8px;
  334. margin-bottom: 12px;
  335. }
  336. .nozzle-box {
  337. flex: 1;
  338. display: flex;
  339. align-items: center;
  340. gap: 4px;
  341. padding: 8px 12px;
  342. background: var(--bg-white);
  343. border: 2px solid var(--border);
  344. border-radius: 8px;
  345. }
  346. .nozzle-box.active { border-color: var(--accent); }
  347. .nozzle-dots {
  348. display: flex;
  349. gap: 3px;
  350. }
  351. .n-dot {
  352. width: 16px;
  353. height: 16px;
  354. border-radius: 4px;
  355. border: 1px solid rgba(0,0,0,0.1);
  356. }
  357. .n-dot.empty {
  358. background: var(--bg-light) !important;
  359. border: 1px dashed var(--border);
  360. }
  361. .nozzle-box-spacer { flex: 1; }
  362. .nozzle-box-label {
  363. font-size: 11px;
  364. color: var(--text-muted);
  365. padding: 4px 8px;
  366. background: var(--bg-light);
  367. border-radius: 4px;
  368. }
  369. /* AMS Middle Row - Tabs */
  370. .ams-tabs-row {
  371. display: flex;
  372. gap: 6px;
  373. margin-bottom: 10px;
  374. }
  375. .ams-tab {
  376. display: flex;
  377. align-items: center;
  378. gap: 3px;
  379. padding: 4px 8px;
  380. background: var(--bg-light);
  381. border: 2px solid transparent;
  382. border-radius: 6px;
  383. cursor: pointer;
  384. }
  385. .ams-tab:hover { background: var(--bg-hover); }
  386. .ams-tab.active { border-color: var(--accent); }
  387. .ams-tab-dot {
  388. width: 12px;
  389. height: 12px;
  390. border-radius: 3px;
  391. border: 1px solid rgba(0,0,0,0.08);
  392. }
  393. /* AMS Content Area */
  394. .ams-content {
  395. background: var(--bg-light);
  396. border-radius: 10px;
  397. padding: 12px;
  398. }
  399. .ams-info-row {
  400. display: flex;
  401. align-items: center;
  402. gap: 8px;
  403. margin-bottom: 8px;
  404. padding-left: 4px;
  405. }
  406. .ams-humidity {
  407. display: flex;
  408. align-items: center;
  409. gap: 4px;
  410. font-size: 12px;
  411. color: var(--text-secondary);
  412. }
  413. .ams-humidity img { width: 14px; opacity: 0.5; }
  414. /* Slot Labels */
  415. .slot-labels {
  416. display: flex;
  417. gap: 8px;
  418. margin-bottom: 6px;
  419. padding: 0 4px;
  420. }
  421. .slot-label {
  422. width: 60px;
  423. display: flex;
  424. align-items: center;
  425. justify-content: center;
  426. gap: 2px;
  427. font-size: 10px;
  428. color: var(--text-muted);
  429. }
  430. .slot-label img { width: 12px; opacity: 0.4; }
  431. /* AMS Main Grid */
  432. .ams-grid {
  433. display: flex;
  434. gap: 12px;
  435. }
  436. /* AMS Slots */
  437. .ams-slots {
  438. display: flex;
  439. gap: 8px;
  440. }
  441. .ams-slot {
  442. width: 60px;
  443. height: 90px;
  444. border-radius: 12px;
  445. overflow: hidden;
  446. cursor: pointer;
  447. border: 2px solid var(--border);
  448. display: flex;
  449. flex-direction: column;
  450. background: var(--bg-white);
  451. }
  452. .ams-slot:hover { border-color: var(--text-muted); }
  453. .ams-slot.active { border-color: var(--accent); }
  454. .ams-slot-color {
  455. flex: 1;
  456. display: flex;
  457. align-items: flex-end;
  458. justify-content: center;
  459. padding-bottom: 6px;
  460. position: relative;
  461. }
  462. .ams-slot-color img {
  463. width: 18px;
  464. height: 18px;
  465. opacity: 0.7;
  466. }
  467. .ams-slot-bottom {
  468. padding: 6px 4px;
  469. text-align: center;
  470. background: var(--bg-light);
  471. border-top: 1px solid var(--border-light);
  472. }
  473. .ams-slot-type {
  474. font-size: 11px;
  475. font-weight: 600;
  476. color: var(--text-primary);
  477. }
  478. /* Connector Lines */
  479. .ams-connectors {
  480. display: flex;
  481. justify-content: center;
  482. padding: 8px 0;
  483. margin-left: 30px;
  484. }
  485. .connector-group {
  486. display: flex;
  487. gap: 32px;
  488. position: relative;
  489. }
  490. .connector-line {
  491. width: 2px;
  492. height: 20px;
  493. background: #ccc;
  494. }
  495. .connector-bar {
  496. position: absolute;
  497. bottom: 0;
  498. left: 0;
  499. right: 0;
  500. height: 2px;
  501. background: #ccc;
  502. }
  503. /* External Section */
  504. .ext-section {
  505. display: flex;
  506. flex-direction: column;
  507. align-items: center;
  508. gap: 6px;
  509. }
  510. .ext-title {
  511. font-size: 12px;
  512. color: var(--text-secondary);
  513. }
  514. .ext-slot-box {
  515. width: 60px;
  516. height: 70px;
  517. background: var(--bg-white);
  518. border: 2px solid var(--border);
  519. border-radius: 12px;
  520. display: flex;
  521. flex-direction: column;
  522. align-items: center;
  523. justify-content: center;
  524. cursor: pointer;
  525. font-size: 20px;
  526. color: var(--text-muted);
  527. }
  528. .ext-slot-box:hover { border-color: var(--text-muted); }
  529. .ext-slot-symbol { font-size: 14px; }
  530. .spool-holder-img {
  531. height: 70px;
  532. }
  533. .spool-holder-img img { height: 100%; }
  534. /* Hub Row */
  535. .hub-row {
  536. display: flex;
  537. align-items: center;
  538. justify-content: center;
  539. padding: 10px 0;
  540. margin-left: 30px;
  541. }
  542. .hub-line { width: 40px; height: 2px; background: #ccc; }
  543. .hub-graphic {
  544. display: flex;
  545. align-items: center;
  546. gap: 2px;
  547. padding: 4px 8px;
  548. background: var(--bg-white);
  549. border: 1px solid var(--border);
  550. border-radius: 4px;
  551. }
  552. .hub-dot {
  553. width: 8px;
  554. height: 8px;
  555. border-radius: 50%;
  556. background: var(--accent);
  557. }
  558. /* AMS Actions */
  559. .ams-actions {
  560. display: flex;
  561. align-items: center;
  562. gap: 8px;
  563. margin-top: 10px;
  564. }
  565. .auto-refill-btn {
  566. display: flex;
  567. align-items: center;
  568. gap: 6px;
  569. padding: 8px 14px;
  570. background: var(--bg-white);
  571. border: 1px solid var(--border);
  572. border-radius: 8px;
  573. cursor: pointer;
  574. font-size: 12px;
  575. color: var(--text-secondary);
  576. }
  577. .auto-refill-btn:hover { background: var(--bg-hover); }
  578. .auto-refill-btn img { width: 16px; opacity: 0.5; }
  579. .ams-spacer { flex: 1; }
  580. .ams-btn {
  581. padding: 10px 20px;
  582. border-radius: 8px;
  583. font-size: 12px;
  584. cursor: pointer;
  585. border: none;
  586. }
  587. .ams-btn.unload {
  588. background: #e0e0e0;
  589. color: var(--text-secondary);
  590. }
  591. .ams-btn.unload:hover { background: #d5d5d5; }
  592. .ams-btn.load {
  593. background: #e0e0e0;
  594. color: var(--text-secondary);
  595. }
  596. .ams-btn.load:hover { background: #d5d5d5; }
  597. </style>
  598. </head>
  599. <body>
  600. <div class="main-layout">
  601. <!-- Left Panel -->
  602. <div class="left-panel">
  603. <div class="camera-header">
  604. <span class="camera-title">Camera</span>
  605. <button class="icon-btn"><img src="icons/video-camera.svg"></button>
  606. <button class="icon-btn"><img src="icons/webcam.svg"></button>
  607. <button class="icon-btn"><img src="icons/settings.svg"></button>
  608. <button class="icon-btn"><img src="icons/reload.svg"></button>
  609. </div>
  610. <div class="camera-feed">Camera Feed</div>
  611. <div class="print-progress">
  612. <div class="progress-label">Printing Progress</div>
  613. <div class="progress-row">
  614. <div class="progress-thumb"><img src="icons/micro-sd.svg"></div>
  615. <div class="progress-info">
  616. <div class="progress-name">N/A</div>
  617. <div class="progress-status">N/A</div>
  618. <div class="progress-bar-bg"><div class="progress-bar-fill"></div></div>
  619. <div class="progress-details">Layer: N/A &nbsp; N/A</div>
  620. <div class="progress-details">Estimated finish time: N/A</div>
  621. </div>
  622. <div class="progress-btns">
  623. <button class="progress-btn">⌂</button>
  624. <button class="progress-btn">⏸</button>
  625. <button class="progress-btn">⏹</button>
  626. </div>
  627. </div>
  628. </div>
  629. </div>
  630. <!-- Right Panel -->
  631. <div class="right-panel">
  632. <div class="control-header">
  633. <span class="control-title">Control</span>
  634. <button class="header-btn">Printer Parts</button>
  635. <button class="header-btn">Print Options</button>
  636. <button class="header-btn">Calibration</button>
  637. </div>
  638. <div class="control-body">
  639. <!-- Temperature -->
  640. <div class="temp-section">
  641. <div class="temp-row">
  642. <div class="temp-icon"><img src="icons/hotend.svg"></div>
  643. <span class="temp-badge">L</span>
  644. <span class="temp-value">22</span>
  645. <span class="temp-target">/0 °C</span>
  646. </div>
  647. <div class="temp-row">
  648. <div class="temp-icon"><img src="icons/hotend.svg"></div>
  649. <span class="temp-badge">R</span>
  650. <span class="temp-value">21</span>
  651. <span class="temp-target">/0 °C</span>
  652. </div>
  653. <div class="temp-row">
  654. <div class="temp-icon"><img src="icons/heatbed.svg"></div>
  655. <span class="temp-value">21</span>
  656. <span class="temp-target">/0 °C</span>
  657. </div>
  658. <div class="temp-row">
  659. <div class="temp-icon"><img src="icons/chamber.svg"></div>
  660. <span class="temp-value">21</span>
  661. <span class="temp-target">/0 °C</span>
  662. </div>
  663. </div>
  664. <!-- Air Condition -->
  665. <div class="air-row">
  666. <div class="air-label"><img src="icons/ventilation.svg"> Air Condition</div>
  667. <div class="air-item"><img src="icons/ventilation.svg"> 100%</div>
  668. <div class="air-item">Lamp <div class="lamp-dot"></div></div>
  669. </div>
  670. <!-- Movement -->
  671. <div class="movement-section">
  672. <div class="jog-pad">
  673. <div class="jog-ring">
  674. <span class="jog-label top">Y</span>
  675. <span class="jog-label bottom">-Y</span>
  676. <span class="jog-label left">-X</span>
  677. <span class="jog-label right">X</span>
  678. <button class="jog-arrow up">▲</button>
  679. <button class="jog-arrow down">▼</button>
  680. <button class="jog-arrow left">◀</button>
  681. <button class="jog-arrow right">▶</button>
  682. <button class="jog-home"><img src="icons/home.svg"></button>
  683. </div>
  684. </div>
  685. <div class="step-col">
  686. <button class="step-btn">↑ 10</button>
  687. <button class="step-btn active">↑ 1</button>
  688. <span class="step-label">Bed</span>
  689. <button class="step-btn">↓ 1</button>
  690. <button class="step-btn">↓ 10</button>
  691. </div>
  692. <div class="extruder-col">
  693. <div class="nozzle-toggle">
  694. <button class="active">Left</button>
  695. <button>Right</button>
  696. </div>
  697. <div class="extruder-img"><img src="icons/dual-extruder.png"></div>
  698. <span class="extruder-label">Extruder</span>
  699. <div class="ext-btns">
  700. <button class="ext-btn">▲</button>
  701. <button class="ext-btn">▼</button>
  702. </div>
  703. </div>
  704. </div>
  705. <!-- AMS Section -->
  706. <div class="ams-section">
  707. <!-- Nozzle Color Boxes -->
  708. <div class="nozzle-boxes">
  709. <div class="nozzle-box active">
  710. <div class="nozzle-dots">
  711. <div class="n-dot" style="background: #FFD700;"></div>
  712. <div class="n-dot" style="background: #8B4513;"></div>
  713. <div class="n-dot" style="background: #1a1a1a;"></div>
  714. <div class="n-dot" style="background: #222;"></div>
  715. </div>
  716. </div>
  717. <div class="nozzle-box">
  718. <div class="nozzle-dots">
  719. <div class="n-dot" style="background: #0066FF;"></div>
  720. <div class="n-dot" style="background: #FF0000;"></div>
  721. </div>
  722. <div class="nozzle-box-spacer"></div>
  723. <div class="nozzle-box-label">0</div>
  724. </div>
  725. <div class="nozzle-box">
  726. <div class="nozzle-dots">
  727. <div class="n-dot empty"></div>
  728. <div class="n-dot empty"></div>
  729. <div class="n-dot empty"></div>
  730. </div>
  731. <div class="nozzle-box-spacer"></div>
  732. <div class="nozzle-box-label" style="background: var(--accent); color: white;">0</div>
  733. </div>
  734. </div>
  735. <!-- AMS Content -->
  736. <div class="ams-content">
  737. <!-- Info Row -->
  738. <div class="ams-info-row">
  739. <div class="ams-humidity"><img src="icons/water.svg"> 18 %</div>
  740. <div class="ams-humidity">☀</div>
  741. </div>
  742. <!-- Slot Labels -->
  743. <div class="slot-labels">
  744. <div class="slot-label">A1↓</div>
  745. <div class="slot-label">A2↓</div>
  746. <div class="slot-label">A3↓</div>
  747. <div class="slot-label">A4↓</div>
  748. <div style="flex: 1;"></div>
  749. <div class="slot-label">Ext</div>
  750. </div>
  751. <!-- AMS Grid -->
  752. <div class="ams-grid">
  753. <!-- Slots -->
  754. <div class="ams-slots">
  755. <div class="ams-slot active">
  756. <div class="ams-slot-color" style="background: #FFD700;">
  757. <img src="icons/eye.svg">
  758. </div>
  759. <div class="ams-slot-bottom">
  760. <div class="ams-slot-type">PLA</div>
  761. </div>
  762. </div>
  763. <div class="ams-slot">
  764. <div class="ams-slot-color" style="background: #1a1a1a;">
  765. <img src="icons/eye.svg" style="filter: invert(1);">
  766. </div>
  767. <div class="ams-slot-bottom">
  768. <div class="ams-slot-type">PETG</div>
  769. </div>
  770. </div>
  771. <div class="ams-slot">
  772. <div class="ams-slot-color" style="background: #8B4513;">
  773. <img src="icons/eye.svg" style="filter: invert(1);">
  774. </div>
  775. <div class="ams-slot-bottom">
  776. <div class="ams-slot-type">PETG</div>
  777. </div>
  778. </div>
  779. <div class="ams-slot">
  780. <div class="ams-slot-color" style="background: #222;">
  781. <img src="icons/eye.svg" style="filter: invert(1);">
  782. </div>
  783. <div class="ams-slot-bottom">
  784. <div class="ams-slot-type">PLA</div>
  785. </div>
  786. </div>
  787. </div>
  788. <!-- External -->
  789. <div class="ext-section">
  790. <div class="ext-slot-box">
  791. ?
  792. <span class="ext-slot-symbol">∠</span>
  793. </div>
  794. <div class="spool-holder-img">
  795. <img src="icons/single-extruder1.png">
  796. </div>
  797. </div>
  798. </div>
  799. <!-- Connectors -->
  800. <div class="ams-connectors">
  801. <div class="connector-group">
  802. <div class="connector-line"></div>
  803. <div class="connector-line"></div>
  804. <div class="connector-line"></div>
  805. <div class="connector-line"></div>
  806. </div>
  807. </div>
  808. <!-- Hub -->
  809. <div class="hub-row">
  810. <div class="hub-line"></div>
  811. <div class="hub-graphic">
  812. <div class="hub-dot"></div>
  813. <div class="hub-dot"></div>
  814. </div>
  815. <div class="hub-line"></div>
  816. </div>
  817. </div>
  818. <!-- Actions -->
  819. <div class="ams-actions">
  820. <button class="auto-refill-btn">
  821. Auto-refill
  822. <img src="icons/ams-settings.svg">
  823. </button>
  824. <div class="ams-spacer"></div>
  825. <button class="ams-btn unload">Unload</button>
  826. <button class="ams-btn load">Load</button>
  827. </div>
  828. </div>
  829. </div>
  830. </div>
  831. </div>
  832. </body>
  833. </html>