control-page-mockup.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  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 Page Mockup</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. }
  13. :root {
  14. --bg-primary: #1a1a1a;
  15. --bg-secondary: #2d2d2d;
  16. --bg-tertiary: #3d3d3d;
  17. --text-primary: #ffffff;
  18. --text-secondary: #888888;
  19. --accent: #00ae42;
  20. --accent-dark: #008c35;
  21. --orange: #f5a623;
  22. --red: #e74c3c;
  23. --blue: #3498db;
  24. }
  25. body {
  26. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  27. background: var(--bg-primary);
  28. color: var(--text-primary);
  29. min-height: 100vh;
  30. }
  31. /* Printer Tabs */
  32. .printer-tabs {
  33. display: flex;
  34. background: var(--bg-secondary);
  35. border-bottom: 1px solid var(--bg-tertiary);
  36. padding: 0 16px;
  37. }
  38. .printer-tab {
  39. display: flex;
  40. align-items: center;
  41. gap: 8px;
  42. padding: 12px 20px;
  43. border: none;
  44. background: none;
  45. color: var(--text-secondary);
  46. cursor: pointer;
  47. border-bottom: 2px solid transparent;
  48. font-size: 14px;
  49. }
  50. .printer-tab.active {
  51. color: var(--accent);
  52. border-bottom-color: var(--accent);
  53. background: var(--bg-primary);
  54. }
  55. .printer-tab .status-dot {
  56. width: 8px;
  57. height: 8px;
  58. border-radius: 50%;
  59. background: var(--accent);
  60. }
  61. .printer-tab .status-dot.offline {
  62. background: var(--red);
  63. }
  64. /* Main Layout */
  65. .main-content {
  66. display: grid;
  67. grid-template-columns: 1fr 380px;
  68. height: calc(100vh - 49px);
  69. gap: 0;
  70. }
  71. /* Left Column */
  72. .left-column {
  73. display: flex;
  74. flex-direction: column;
  75. background: var(--bg-primary);
  76. }
  77. /* Camera Section */
  78. .camera-section {
  79. flex: 1;
  80. background: #000;
  81. position: relative;
  82. min-height: 0;
  83. }
  84. .camera-feed {
  85. width: 100%;
  86. height: 100%;
  87. object-fit: contain;
  88. background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  89. }
  90. .camera-overlay {
  91. position: absolute;
  92. top: 12px;
  93. left: 12px;
  94. display: flex;
  95. gap: 8px;
  96. }
  97. .camera-btn {
  98. padding: 6px 12px;
  99. background: rgba(0,0,0,0.6);
  100. border: none;
  101. border-radius: 4px;
  102. color: white;
  103. cursor: pointer;
  104. font-size: 12px;
  105. }
  106. .camera-btn:hover {
  107. background: rgba(0,0,0,0.8);
  108. }
  109. /* Print Progress */
  110. .print-progress {
  111. background: var(--bg-secondary);
  112. padding: 16px;
  113. display: flex;
  114. gap: 16px;
  115. align-items: center;
  116. }
  117. .print-thumbnail {
  118. width: 80px;
  119. height: 80px;
  120. background: var(--bg-tertiary);
  121. border-radius: 8px;
  122. display: flex;
  123. align-items: center;
  124. justify-content: center;
  125. color: var(--text-secondary);
  126. font-size: 12px;
  127. }
  128. .print-info {
  129. flex: 1;
  130. }
  131. .print-name {
  132. font-weight: 500;
  133. margin-bottom: 8px;
  134. color: var(--text-primary);
  135. }
  136. .progress-bar {
  137. height: 6px;
  138. background: var(--bg-tertiary);
  139. border-radius: 3px;
  140. margin-bottom: 8px;
  141. overflow: hidden;
  142. }
  143. .progress-fill {
  144. height: 100%;
  145. background: var(--accent);
  146. width: 45%;
  147. transition: width 0.3s;
  148. }
  149. .print-stats {
  150. display: flex;
  151. gap: 24px;
  152. font-size: 13px;
  153. color: var(--text-secondary);
  154. }
  155. .print-stats span {
  156. color: var(--text-primary);
  157. }
  158. /* Print Controls - in progress section */
  159. .print-controls-inline {
  160. display: flex;
  161. gap: 8px;
  162. margin-left: 16px;
  163. }
  164. .print-btn-small {
  165. width: 40px;
  166. height: 40px;
  167. border: none;
  168. border-radius: 8px;
  169. cursor: pointer;
  170. font-size: 16px;
  171. display: flex;
  172. align-items: center;
  173. justify-content: center;
  174. }
  175. .print-btn-small.pause {
  176. background: #f39c12;
  177. color: white;
  178. }
  179. .print-btn-small.stop {
  180. background: var(--red);
  181. color: white;
  182. }
  183. .print-btn-small:hover {
  184. opacity: 0.9;
  185. }
  186. .print-btn-small:disabled {
  187. opacity: 0.4;
  188. cursor: not-allowed;
  189. }
  190. /* Right Column - Control Panel */
  191. .control-panel {
  192. background: var(--bg-secondary);
  193. overflow-y: auto;
  194. display: flex;
  195. flex-direction: column;
  196. }
  197. /* Section */
  198. .section {
  199. padding: 16px;
  200. border-bottom: 1px solid var(--bg-tertiary);
  201. }
  202. .section-title {
  203. font-size: 12px;
  204. color: var(--text-secondary);
  205. margin-bottom: 12px;
  206. text-transform: uppercase;
  207. letter-spacing: 0.5px;
  208. }
  209. /* Temperatures */
  210. .temps-grid {
  211. display: grid;
  212. grid-template-columns: 1fr 1fr;
  213. gap: 8px;
  214. }
  215. .temp-item {
  216. display: flex;
  217. align-items: center;
  218. gap: 8px;
  219. padding: 8px 12px;
  220. background: var(--bg-primary);
  221. border-radius: 6px;
  222. cursor: pointer;
  223. }
  224. .temp-item:hover {
  225. background: var(--bg-tertiary);
  226. }
  227. .temp-icon {
  228. width: 24px;
  229. height: 24px;
  230. display: flex;
  231. align-items: center;
  232. justify-content: center;
  233. font-size: 14px;
  234. }
  235. .temp-values {
  236. display: flex;
  237. align-items: baseline;
  238. gap: 4px;
  239. }
  240. .temp-current {
  241. font-size: 18px;
  242. font-weight: 500;
  243. }
  244. .temp-current.hot {
  245. color: var(--orange);
  246. }
  247. .temp-target {
  248. font-size: 12px;
  249. color: var(--text-secondary);
  250. }
  251. /* Quick Controls Row */
  252. .quick-controls {
  253. display: flex;
  254. gap: 8px;
  255. margin-top: 12px;
  256. }
  257. .quick-btn {
  258. flex: 1;
  259. padding: 8px;
  260. background: var(--bg-primary);
  261. border: none;
  262. border-radius: 6px;
  263. color: var(--text-secondary);
  264. cursor: pointer;
  265. font-size: 12px;
  266. display: flex;
  267. align-items: center;
  268. justify-content: center;
  269. gap: 6px;
  270. }
  271. .quick-btn:hover {
  272. background: var(--bg-tertiary);
  273. color: var(--text-primary);
  274. }
  275. .quick-btn.active {
  276. background: var(--accent);
  277. color: white;
  278. }
  279. /* Speed Control */
  280. .speed-control {
  281. display: flex;
  282. gap: 4px;
  283. }
  284. .speed-btn {
  285. flex: 1;
  286. padding: 10px 8px;
  287. background: var(--bg-primary);
  288. border: none;
  289. border-radius: 6px;
  290. color: var(--text-secondary);
  291. cursor: pointer;
  292. font-size: 11px;
  293. text-align: center;
  294. }
  295. .speed-btn:hover {
  296. background: var(--bg-tertiary);
  297. }
  298. .speed-btn.active {
  299. background: var(--accent);
  300. color: white;
  301. }
  302. .speed-btn.ludicrous {
  303. color: var(--red);
  304. }
  305. .speed-btn.ludicrous.active {
  306. background: var(--red);
  307. color: white;
  308. }
  309. /* Movement Controls */
  310. .movement-section {
  311. display: flex;
  312. gap: 16px;
  313. align-items: flex-start;
  314. }
  315. .jog-pad {
  316. position: relative;
  317. width: 140px;
  318. height: 140px;
  319. }
  320. .jog-ring {
  321. width: 100%;
  322. height: 100%;
  323. border-radius: 50%;
  324. background: var(--bg-primary);
  325. position: relative;
  326. }
  327. .jog-btn {
  328. position: absolute;
  329. width: 36px;
  330. height: 36px;
  331. background: var(--bg-tertiary);
  332. border: none;
  333. border-radius: 6px;
  334. color: var(--text-primary);
  335. cursor: pointer;
  336. display: flex;
  337. align-items: center;
  338. justify-content: center;
  339. font-size: 16px;
  340. }
  341. .jog-btn:hover {
  342. background: var(--accent);
  343. }
  344. .jog-btn.up { top: 8px; left: 50%; transform: translateX(-50%); }
  345. .jog-btn.down { bottom: 8px; left: 50%; transform: translateX(-50%); }
  346. .jog-btn.left { left: 8px; top: 50%; transform: translateY(-50%); }
  347. .jog-btn.right { right: 8px; top: 50%; transform: translateY(-50%); }
  348. .jog-home {
  349. position: absolute;
  350. top: 50%;
  351. left: 50%;
  352. transform: translate(-50%, -50%);
  353. width: 44px;
  354. height: 44px;
  355. background: var(--accent);
  356. border: none;
  357. border-radius: 50%;
  358. color: white;
  359. cursor: pointer;
  360. font-size: 18px;
  361. }
  362. .jog-home:hover {
  363. background: var(--accent-dark);
  364. }
  365. /* Z Controls */
  366. .z-controls {
  367. display: flex;
  368. flex-direction: column;
  369. gap: 8px;
  370. align-items: center;
  371. }
  372. .z-btn {
  373. width: 44px;
  374. height: 44px;
  375. background: var(--bg-primary);
  376. border: none;
  377. border-radius: 6px;
  378. color: var(--text-primary);
  379. cursor: pointer;
  380. font-size: 16px;
  381. }
  382. .z-btn:hover {
  383. background: var(--bg-tertiary);
  384. }
  385. .z-label {
  386. font-size: 12px;
  387. color: var(--text-secondary);
  388. }
  389. /* Step Size */
  390. .step-sizes {
  391. display: flex;
  392. flex-direction: column;
  393. gap: 4px;
  394. }
  395. .step-btn {
  396. padding: 6px 12px;
  397. background: var(--bg-primary);
  398. border: none;
  399. border-radius: 4px;
  400. color: var(--text-secondary);
  401. cursor: pointer;
  402. font-size: 11px;
  403. }
  404. .step-btn:hover, .step-btn.active {
  405. background: var(--bg-tertiary);
  406. color: var(--text-primary);
  407. }
  408. /* Extruder */
  409. .extruder-section {
  410. display: flex;
  411. flex-direction: column;
  412. align-items: center;
  413. gap: 8px;
  414. }
  415. .extruder-toggle {
  416. display: flex;
  417. background: var(--bg-primary);
  418. border-radius: 6px;
  419. overflow: hidden;
  420. }
  421. .extruder-toggle button {
  422. padding: 6px 16px;
  423. border: none;
  424. background: none;
  425. color: var(--text-secondary);
  426. cursor: pointer;
  427. font-size: 12px;
  428. }
  429. .extruder-toggle button.active {
  430. background: var(--accent);
  431. color: white;
  432. }
  433. .extruder-graphic {
  434. width: 60px;
  435. height: 80px;
  436. background: var(--bg-primary);
  437. border-radius: 8px;
  438. display: flex;
  439. align-items: center;
  440. justify-content: center;
  441. color: var(--text-secondary);
  442. font-size: 10px;
  443. }
  444. .extruder-btns {
  445. display: flex;
  446. flex-direction: column;
  447. gap: 4px;
  448. }
  449. /* AMS Section */
  450. .ams-section {
  451. flex: 1;
  452. display: flex;
  453. flex-direction: column;
  454. }
  455. /* AMS Tabs - like Bambu Studio color indicators */
  456. .ams-tabs {
  457. display: flex;
  458. gap: 8px;
  459. margin-bottom: 12px;
  460. }
  461. .ams-tab {
  462. display: flex;
  463. align-items: center;
  464. gap: 2px;
  465. padding: 6px 10px;
  466. background: var(--bg-primary);
  467. border: 2px solid transparent;
  468. border-radius: 6px;
  469. cursor: pointer;
  470. }
  471. .ams-tab:hover {
  472. background: var(--bg-tertiary);
  473. }
  474. .ams-tab.active {
  475. border-color: var(--accent);
  476. }
  477. .ams-tab-colors {
  478. display: flex;
  479. gap: 2px;
  480. }
  481. .ams-tab-dot {
  482. width: 12px;
  483. height: 12px;
  484. border-radius: 2px;
  485. }
  486. .ams-tab-label {
  487. font-size: 10px;
  488. color: var(--text-secondary);
  489. margin-left: 4px;
  490. }
  491. /* AMS Unit Content */
  492. .ams-unit-content {
  493. background: var(--bg-primary);
  494. border-radius: 8px;
  495. padding: 12px;
  496. }
  497. .ams-unit-header {
  498. display: flex;
  499. justify-content: space-between;
  500. align-items: center;
  501. margin-bottom: 10px;
  502. font-size: 11px;
  503. color: var(--text-secondary);
  504. }
  505. .ams-slots {
  506. display: flex;
  507. gap: 8px;
  508. justify-content: center;
  509. }
  510. .ams-slot {
  511. width: 56px;
  512. background: var(--bg-secondary);
  513. border-radius: 8px;
  514. overflow: hidden;
  515. cursor: pointer;
  516. border: 2px solid transparent;
  517. transition: all 0.2s;
  518. }
  519. .ams-slot:hover {
  520. border-color: var(--text-secondary);
  521. }
  522. .ams-slot.selected {
  523. border-color: var(--accent);
  524. box-shadow: 0 0 0 2px rgba(0, 174, 66, 0.3);
  525. }
  526. .ams-slot.empty {
  527. opacity: 0.4;
  528. }
  529. .ams-slot-color {
  530. height: 36px;
  531. position: relative;
  532. }
  533. .ams-slot-color::after {
  534. content: '';
  535. position: absolute;
  536. bottom: 0;
  537. left: 0;
  538. right: 0;
  539. height: 8px;
  540. background: linear-gradient(transparent, rgba(0,0,0,0.3));
  541. }
  542. .ams-slot-info {
  543. padding: 6px 4px;
  544. text-align: center;
  545. background: var(--bg-tertiary);
  546. }
  547. .ams-slot-type {
  548. font-size: 10px;
  549. font-weight: 600;
  550. color: var(--text-primary);
  551. }
  552. .ams-slot-num {
  553. font-size: 9px;
  554. color: var(--text-secondary);
  555. margin-top: 2px;
  556. }
  557. /* External Spool */
  558. .external-spool {
  559. display: flex;
  560. align-items: center;
  561. gap: 12px;
  562. margin-top: 12px;
  563. }
  564. .ext-label {
  565. font-size: 11px;
  566. color: var(--text-secondary);
  567. width: 30px;
  568. }
  569. .ext-slot {
  570. width: 56px;
  571. height: 64px;
  572. background: var(--bg-primary);
  573. border-radius: 8px;
  574. display: flex;
  575. flex-direction: column;
  576. align-items: center;
  577. justify-content: center;
  578. color: var(--text-secondary);
  579. font-size: 18px;
  580. border: 2px solid transparent;
  581. cursor: pointer;
  582. }
  583. .ext-slot:hover {
  584. border-color: var(--text-secondary);
  585. }
  586. .ext-slot-label {
  587. font-size: 9px;
  588. margin-top: 4px;
  589. }
  590. .ext-graphic {
  591. flex: 1;
  592. height: 64px;
  593. background: var(--bg-primary);
  594. border-radius: 8px;
  595. display: flex;
  596. align-items: center;
  597. justify-content: center;
  598. font-size: 11px;
  599. color: var(--text-secondary);
  600. }
  601. /* AMS Actions */
  602. .ams-actions {
  603. display: flex;
  604. gap: 8px;
  605. margin-top: 12px;
  606. }
  607. .ams-btn {
  608. flex: 1;
  609. padding: 10px;
  610. border: none;
  611. border-radius: 6px;
  612. cursor: pointer;
  613. font-size: 13px;
  614. font-weight: 500;
  615. }
  616. .ams-btn.secondary {
  617. background: var(--bg-primary);
  618. color: var(--text-primary);
  619. }
  620. .ams-btn.secondary:hover {
  621. background: var(--bg-tertiary);
  622. }
  623. .ams-btn.primary {
  624. background: var(--accent);
  625. color: white;
  626. }
  627. .ams-btn.primary:hover {
  628. background: var(--accent-dark);
  629. }
  630. /* AMS Animation Area - reserved space for filament path animation */
  631. .ams-animation-area {
  632. flex: 1;
  633. min-height: 100px;
  634. margin-top: 16px;
  635. background: var(--bg-primary);
  636. border-radius: 8px;
  637. display: flex;
  638. flex-direction: column;
  639. align-items: center;
  640. justify-content: center;
  641. position: relative;
  642. }
  643. .ams-hub-graphic {
  644. width: 80px;
  645. height: 24px;
  646. background: var(--bg-tertiary);
  647. border-radius: 4px;
  648. display: flex;
  649. align-items: center;
  650. justify-content: center;
  651. font-size: 10px;
  652. color: var(--text-secondary);
  653. }
  654. .ams-filament-path {
  655. position: absolute;
  656. top: 0;
  657. left: 50%;
  658. width: 2px;
  659. height: 30px;
  660. background: var(--accent);
  661. transform: translateX(-50%);
  662. }
  663. .ams-status-text {
  664. font-size: 11px;
  665. color: var(--text-secondary);
  666. margin-top: 12px;
  667. }
  668. </style>
  669. </head>
  670. <body>
  671. <!-- Printer Tabs -->
  672. <div class="printer-tabs">
  673. <button class="printer-tab active">
  674. <span class="status-dot"></span>
  675. H2D-1
  676. <span style="font-size: 11px; padding: 2px 8px; background: var(--bg-tertiary); border-radius: 4px;">IDLE</span>
  677. </button>
  678. <button class="printer-tab">
  679. <span class="status-dot"></span>
  680. X1C-2
  681. </button>
  682. <button class="printer-tab">
  683. <span class="status-dot offline"></span>
  684. P1S-3
  685. </button>
  686. </div>
  687. <!-- Main Content -->
  688. <div class="main-content">
  689. <!-- Left Column: Camera + Progress -->
  690. <div class="left-column">
  691. <div class="camera-section">
  692. <div class="camera-feed">
  693. <!-- Camera placeholder -->
  694. <div style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #666;">
  695. 📷 Camera Feed
  696. </div>
  697. </div>
  698. <div class="camera-overlay">
  699. <button class="camera-btn">▶ Start</button>
  700. <button class="camera-btn">⛶ Fullscreen</button>
  701. </div>
  702. </div>
  703. <div class="print-progress">
  704. <div class="print-thumbnail">
  705. No Print
  706. </div>
  707. <div class="print-info">
  708. <div class="print-name">Idle</div>
  709. <div class="progress-bar">
  710. <div class="progress-fill" style="width: 0%"></div>
  711. </div>
  712. <div class="print-stats">
  713. Layer: <span>--/--</span>
  714. Time: <span>--:--</span>
  715. Remaining: <span>--:--</span>
  716. </div>
  717. </div>
  718. <div class="print-controls-inline">
  719. <button class="print-btn-small pause" disabled>⏸</button>
  720. <button class="print-btn-small stop" disabled>⏹</button>
  721. </div>
  722. </div>
  723. </div>
  724. <!-- Right Column: Control Panel -->
  725. <div class="control-panel">
  726. <!-- Temperatures -->
  727. <div class="section">
  728. <div class="section-title">Temperature</div>
  729. <div class="temps-grid">
  730. <div class="temp-item">
  731. <div class="temp-icon">🔥L</div>
  732. <div class="temp-values">
  733. <span class="temp-current">22</span>
  734. <span class="temp-target">/0°C</span>
  735. </div>
  736. </div>
  737. <div class="temp-item">
  738. <div class="temp-icon">🔥R</div>
  739. <div class="temp-values">
  740. <span class="temp-current">21</span>
  741. <span class="temp-target">/0°C</span>
  742. </div>
  743. </div>
  744. <div class="temp-item">
  745. <div class="temp-icon">🛏️</div>
  746. <div class="temp-values">
  747. <span class="temp-current">21</span>
  748. <span class="temp-target">/0°C</span>
  749. </div>
  750. </div>
  751. <div class="temp-item">
  752. <div class="temp-icon">📦</div>
  753. <div class="temp-values">
  754. <span class="temp-current">21</span>
  755. <span class="temp-target">/0°C</span>
  756. </div>
  757. </div>
  758. </div>
  759. <div class="quick-controls">
  760. <button class="quick-btn">🌀 Fans</button>
  761. <button class="quick-btn active">💡 Lamp</button>
  762. <button class="quick-btn">❄️ Cool</button>
  763. </div>
  764. </div>
  765. <!-- Speed -->
  766. <div class="section">
  767. <div class="section-title">Print Speed</div>
  768. <div class="speed-control">
  769. <button class="speed-btn">Silent</button>
  770. <button class="speed-btn active">Standard</button>
  771. <button class="speed-btn">Sport</button>
  772. <button class="speed-btn ludicrous">Ludicrous</button>
  773. </div>
  774. </div>
  775. <!-- Movement -->
  776. <div class="section">
  777. <div class="section-title">Movement</div>
  778. <div class="movement-section">
  779. <div class="jog-pad">
  780. <div class="jog-ring">
  781. <button class="jog-btn up">▲</button>
  782. <button class="jog-btn down">▼</button>
  783. <button class="jog-btn left">◀</button>
  784. <button class="jog-btn right">▶</button>
  785. <button class="jog-home">⌂</button>
  786. </div>
  787. </div>
  788. <div class="z-controls">
  789. <button class="z-btn">▲</button>
  790. <span class="z-label">Z</span>
  791. <button class="z-btn">▼</button>
  792. </div>
  793. <div class="step-sizes">
  794. <button class="step-btn">10mm</button>
  795. <button class="step-btn active">1mm</button>
  796. <button class="step-btn">0.1mm</button>
  797. </div>
  798. <div class="extruder-section">
  799. <div class="extruder-toggle">
  800. <button class="active">Left</button>
  801. <button>Right</button>
  802. </div>
  803. <div class="extruder-graphic">
  804. 🖨️<br>Extruder
  805. </div>
  806. <div class="extruder-btns">
  807. <button class="z-btn" style="width: 36px; height: 28px; font-size: 12px;">▲</button>
  808. <button class="z-btn" style="width: 36px; height: 28px; font-size: 12px;">▼</button>
  809. </div>
  810. </div>
  811. </div>
  812. </div>
  813. <!-- AMS -->
  814. <div class="section ams-section">
  815. <div class="section-title">AMS</div>
  816. <!-- AMS Tabs - color indicators like Bambu Studio -->
  817. <div class="ams-tabs">
  818. <div class="ams-tab active">
  819. <div class="ams-tab-colors">
  820. <div class="ams-tab-dot" style="background: #FFD700;"></div>
  821. <div class="ams-tab-dot" style="background: #1a1a1a;"></div>
  822. <div class="ams-tab-dot" style="background: #8B4513;"></div>
  823. <div class="ams-tab-dot" style="background: #2d2d2d;"></div>
  824. </div>
  825. <span class="ams-tab-label">1</span>
  826. </div>
  827. <div class="ams-tab">
  828. <div class="ams-tab-colors">
  829. <div class="ams-tab-dot" style="background: #FF0000;"></div>
  830. <div class="ams-tab-dot" style="background: #0066FF;"></div>
  831. <div class="ams-tab-dot" style="background: #3d3d3d;"></div>
  832. <div class="ams-tab-dot" style="background: #3d3d3d;"></div>
  833. </div>
  834. <span class="ams-tab-label">2</span>
  835. </div>
  836. <div class="ams-tab">
  837. <div class="ams-tab-colors">
  838. <div class="ams-tab-dot" style="background: #00FF00;"></div>
  839. <div class="ams-tab-dot" style="background: #FFFFFF;"></div>
  840. <div class="ams-tab-dot" style="background: #FF69B4;"></div>
  841. <div class="ams-tab-dot" style="background: #9932CC;"></div>
  842. </div>
  843. <span class="ams-tab-label">3</span>
  844. </div>
  845. </div>
  846. <!-- AMS Unit Content (shows selected AMS) -->
  847. <div class="ams-unit-content">
  848. <div class="ams-unit-header">
  849. <span>AMS 1</span>
  850. <span>💧 18% · 🌡️ 24°C</span>
  851. </div>
  852. <div class="ams-slots">
  853. <div class="ams-slot selected">
  854. <div class="ams-slot-color" style="background: #FFD700;"></div>
  855. <div class="ams-slot-info">
  856. <div class="ams-slot-type">PLA</div>
  857. <div class="ams-slot-num">A1</div>
  858. </div>
  859. </div>
  860. <div class="ams-slot">
  861. <div class="ams-slot-color" style="background: #1a1a1a;"></div>
  862. <div class="ams-slot-info">
  863. <div class="ams-slot-type">PETG</div>
  864. <div class="ams-slot-num">A2</div>
  865. </div>
  866. </div>
  867. <div class="ams-slot">
  868. <div class="ams-slot-color" style="background: #8B4513;"></div>
  869. <div class="ams-slot-info">
  870. <div class="ams-slot-type">PETG</div>
  871. <div class="ams-slot-num">A3</div>
  872. </div>
  873. </div>
  874. <div class="ams-slot">
  875. <div class="ams-slot-color" style="background: #2d2d2d;"></div>
  876. <div class="ams-slot-info">
  877. <div class="ams-slot-type">PLA</div>
  878. <div class="ams-slot-num">A4</div>
  879. </div>
  880. </div>
  881. </div>
  882. </div>
  883. <!-- External Spool -->
  884. <div class="external-spool">
  885. <span class="ext-label">Ext</span>
  886. <div class="ext-slot">
  887. ?
  888. <span class="ext-slot-label">Spool</span>
  889. </div>
  890. <div class="ext-graphic">🎞️ External Spool Holder</div>
  891. </div>
  892. <!-- AMS Actions -->
  893. <div class="ams-actions">
  894. <button class="ams-btn secondary">Unload</button>
  895. <button class="ams-btn primary">Load</button>
  896. </div>
  897. <!-- AMS Animation Area - reserved for filament path animation -->
  898. <div class="ams-animation-area">
  899. <div class="ams-hub-graphic">HUB</div>
  900. <div class="ams-status-text">Ready - Select a slot to load</div>
  901. </div>
  902. </div>
  903. </div>
  904. </div>
  905. </body>
  906. </html>