From cd109e289538516fb42e65d22247f508dc0a2705 Mon Sep 17 00:00:00 2001 From: Philipp Schinacher Date: Sat, 22 Nov 2025 10:00:25 +0100 Subject: [PATCH] open se gate buttons and more AT stuf --- frontend/src/views/AtmosphereManualView.vue | 89 +++++++++++++++++---- frontend/src/views/HomeView.vue | 11 ++- 2 files changed, 84 insertions(+), 16 deletions(-) diff --git a/frontend/src/views/AtmosphereManualView.vue b/frontend/src/views/AtmosphereManualView.vue index b25e45b..b89ed42 100644 --- a/frontend/src/views/AtmosphereManualView.vue +++ b/frontend/src/views/AtmosphereManualView.vue @@ -1,42 +1,101 @@ - diff --git a/frontend/src/views/HomeView.vue b/frontend/src/views/HomeView.vue index 527df0e..45eb951 100644 --- a/frontend/src/views/HomeView.vue +++ b/frontend/src/views/HomeView.vue @@ -5,11 +5,16 @@ - + + + + Open Door + + @@ -19,6 +24,9 @@ import Gasflow from '@/components/Gasflow.vue'; import Atmo from '@/components/Atmo.vue'; import LaserControl from '@/components/LaserControl.vue'; + import ControlButton from '@/components/BaseComponents/ControlButton.vue'; + + const AtmoScope = "ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmosphereControl"; export default { name: 'ManualView', @@ -26,6 +34,7 @@ Gasflow, Atmo, LaserControl, + ControlButton }, }