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,22 @@
{
"$schema": "../../../../TcHmiFramework/Schema/ThemeDescription.Schema.json",
"controlTypeValues": {
"TcHmi.Controls.Beckhoff.TcHmiSparkline": {
"attributes": {},
"themedResources": {
"DefaultGraphColor": {
"color": "#4794da"
},
"DefaultYAxisColor": {
"color": "#4794da"
},
"ReferenceLineColor": {
"color": "#4794da"
},
"LabelColor": {
"color": "#4794da"
}
}
}
}
}

View File

@@ -0,0 +1,21 @@
/** Styles for the theme: Base */
/* Style for the main element */
.TcHmi_Controls_Beckhoff_TcHmiSparkline {
--tchmi-background: var(--tchmi-background-color-1);
--tchmi-background-part: var(--tchmi-background-color-1);
--tchmi-checkbox-background: var(--tchmi-background-color-4);
--tchmi-checkbox-background-checked: var(--tchmi-highlight-color-1);
--tchmi-color: var(--tchmi-highlight-color-1);
--tchmi-border-color: var(--tchmi-background-color-2);
background: var(--tchmi-background);
box-shadow: var(--tchmi-card-shadow);
}
.TcHmi_Controls_Beckhoff_TcHmiSparkline-template-chart {
border-bottom: 1px solid #c0c0c5;
}
.TcHmi_Controls_Beckhoff_TcHmiSparkline-template-chart:last-child {
border-bottom: none;
}