Added minimal functionality for Robot teaching

- Added minimal HMI
- Added possibility to open and close all chamber doors
This commit is contained in:
2026-01-17 09:20:39 +01:00
parent 9f058db2a3
commit 2d11c43579
2274 changed files with 912690 additions and 162 deletions

View File

@@ -0,0 +1,26 @@
/** Styles for the theme: Base-Dark */
.TcHmi_Controls_Beckhoff_TcHmiRecipeSelect {
--tchmi-control-background: var(--tchmi-background-color-1);
--tchmi-control-shadow: var(--tchmi-card-shadow);
--tchmi-selected-recipe-background: var(--tchmi-highlight-color-1);
--tchmi-selected-recipe-background-active: var(--tchmi-ready-color);
--tchmi-selected-recipe-text-color: var(--tchmi-foreground-color-1);
background: var(--tchmi-control-background);
box-shadow: var(--tchmi-control-shadow);
}
.TcHmi_Controls_Beckhoff_TcHmiRecipeSelect-selected-recipe {
background-color: var(--tchmi-selected-recipe-background);
color: var(--tchmi-selected-recipe-text-color);
}
.TcHmi_Controls_Beckhoff_TcHmiRecipeSelect-selected-recipe.active {
background-color: var(--tchmi-selected-recipe-background-active);
}
.TcHmi_Controls_Helpers_Popup-SelectRecipePrompt .TcHmi_Controls_Helpers_Popup-content .empty-notification {
font-style: italic;
text-align: center;
}

View File

@@ -0,0 +1,26 @@
/** Styles for the theme: Base */
.TcHmi_Controls_Beckhoff_TcHmiRecipeSelect {
--tchmi-control-background: var(--tchmi-background-color-1);
--tchmi-control-shadow: var(--tchmi-card-shadow);
--tchmi-selected-recipe-background: var(--tchmi-highlight-color-1);
--tchmi-selected-recipe-background-active: var(--tchmi-ready-color);
--tchmi-selected-recipe-text-color: var(--tchmi-foreground-color-2);
background: var(--tchmi-control-background);
box-shadow: var(--tchmi-control-shadow);
}
.TcHmi_Controls_Beckhoff_TcHmiRecipeSelect-selected-recipe {
background-color: var(--tchmi-selected-recipe-background);
color: var(--tchmi-selected-recipe-text-color);
}
.TcHmi_Controls_Beckhoff_TcHmiRecipeSelect-selected-recipe.active {
background-color: var(--tchmi-selected-recipe-background-active);
}
.TcHmi_Controls_Helpers_Popup-SelectRecipePrompt .TcHmi_Controls_Helpers_Popup-content .empty-notification {
font-style: italic;
text-align: center;
}