aboutsummaryrefslogtreecommitdiff
path: root/hsm-web/Client/src/App.vue
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-01-03 09:20:23 +0000
committerPaul Oliver <contact@pauloliver.dev>2026-01-03 10:33:59 +0000
commitde01f5b7308b83647d823cfb4b2826af849423b7 (patch)
treeac6006adfce97ff98f9fe7b6728ce9c17d46f81a /hsm-web/Client/src/App.vue
parent864a1d2a22580a33b5e928734fd256c2133fb672 (diff)
Adds scaffold for motor control to frontend
Diffstat (limited to 'hsm-web/Client/src/App.vue')
-rw-r--r--hsm-web/Client/src/App.vue33
1 files changed, 29 insertions, 4 deletions
diff --git a/hsm-web/Client/src/App.vue b/hsm-web/Client/src/App.vue
index af4ca3e..122ce41 100644
--- a/hsm-web/Client/src/App.vue
+++ b/hsm-web/Client/src/App.vue
@@ -1,17 +1,42 @@
<template>
<h1>HsMouse</h1>
<INA226 />
- <CameraStream />
+ <CamStream />
+ <MotorCtl />
</template>
<script>
-import INA226 from './INA226.vue'
-import CameraStream from './CameraStream.vue'
+import INA226 from './INA226.vue'
+import CamStream from './CamStream.vue'
+import MotorCtl from './MotorCtl.vue'
export default {
components: {
INA226,
- CameraStream
+ CamStream,
+ MotorCtl
}
}
</script>
+
+<style>
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+ height: 100%;
+ width: 100%;
+}
+td {
+ border: 1px solid black;
+ margin: 0;
+ padding: 0;
+}
+button {
+ border: none;
+ display: block;
+ min-height: 20px;
+ height: 100%;
+ width: 100%;
+ padding: 0;
+}
+</style>