From 81c97deaf7bd984a704db28f0cd676530a7b443e Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Sat, 3 Jan 2026 12:03:30 +0000 Subject: Skins frontend --- hsm-web/Client/src/App.vue | 48 +++++++++++++++++++++++++++++++++------- hsm-web/Client/src/CamStream.vue | 20 +++++++++-------- hsm-web/Client/src/INA226.vue | 12 +++++++++- hsm-web/Client/src/MotorCtl.vue | 38 ++++++++++++++++++++++--------- hsm-web/Client/src/main.js | 2 +- 5 files changed, 90 insertions(+), 30 deletions(-) (limited to 'hsm-web/Client') diff --git a/hsm-web/Client/src/App.vue b/hsm-web/Client/src/App.vue index 122ce41..a4c8338 100644 --- a/hsm-web/Client/src/App.vue +++ b/hsm-web/Client/src/App.vue @@ -1,5 +1,5 @@ + + diff --git a/hsm-web/Client/src/MotorCtl.vue b/hsm-web/Client/src/MotorCtl.vue index c66d9b9..b1c53b2 100644 --- a/hsm-web/Client/src/MotorCtl.vue +++ b/hsm-web/Client/src/MotorCtl.vue @@ -3,19 +3,23 @@ - + - +
+ + - +
- +
+ + @@ -40,7 +44,7 @@
- + @@ -62,6 +66,18 @@ export default { data() { return { + dirIcons: { + n: '↑', + ne: '↗', + e: '→', + se: '↘', + s: '↓', + sw: '↙', + w: '←', + nw: '↖', + ccw: '↺', + cw: '↻' + } } }, mounted() { @@ -76,11 +92,11 @@ export default { height: 33%; width: 33%; } -#ihist { - border: none; - margin: 0; - padding: 0; - resize: none; - width: 100%; +#tmain td, #thist td { + background-color: #2aa198; +} +.bmot { + font-size: 16px; + font-weight: bold; } diff --git a/hsm-web/Client/src/main.js b/hsm-web/Client/src/main.js index 01433bc..004c252 100644 --- a/hsm-web/Client/src/main.js +++ b/hsm-web/Client/src/main.js @@ -1,4 +1,4 @@ +import App from './App.vue' import { createApp } from 'vue' -import App from './App.vue' createApp(App).mount('#app') -- cgit v1.2.1