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,40 @@
{
"$schema": "../../../../TcHmiFramework/Schema/ThemeDescription.Schema.json",
"controlTypeValues": {
"TcHmi.Controls.Beckhoff.TcHmiPieChart": {
"attributes": {},
"themedResources": {
"DefaultGraphColor": {
"color": "#4794da"
},
"DefaultLabelColor": {
"color": "#4794da"
},
"DefaultPieColor1": {
"color": "#4794DA"
},
"DefaultPieColor2": {
"color": "#CBD932"
},
"DefaultPieColor3": {
"color": "#FFA500"
},
"DefaultPieColor4": {
"color": "#009940"
},
"DefaultPieLabelColor1": {
"color": "#000000"
},
"DefaultPieLabelColor2": {
"color": "#000000"
},
"DefaultPieLabelColor3": {
"color": "#000000"
},
"DefaultPieLabelColor4": {
"color": "#000000"
}
}
}
}
}

View File

@@ -0,0 +1,8 @@
<svg version="1.1"
baseProfile="full"
width="30" height="30"
xmlns="http://www.w3.org/2000/svg">
<path d="M 9 18 L 13 22 L 22 9" fill="none" stroke="white" stroke-width="4" stroke-linecap="round" />
</svg>

After

Width:  |  Height:  |  Size: 225 B

View File

@@ -0,0 +1,35 @@
/** Styles for the theme: Base */
/* Style for the main element */
.TcHmi_Controls_Beckhoff_TcHmiPieChart {
--tchmi-background: var(--tchmi-background-color-1);
--tchmi-background-part: var(--tchmi-background-color-1);
--tchmi-color: var(--tchmi-highlight-color-1);
--tchmi-border-color: var(--tchmi-background-color-2);
--tchmi-checkbox-background: var(--tchmi-background-color-4);
--tchmi-checkbox-background-active: var(--tchmi-highlight-color-1);
background: var(--tchmi-background);
box-shadow: var(--tchmi-card-shadow);
}
.TcHmi_Controls_Beckhoff_TcHmiPieChart-template-chart {
background: var(--tchmi-background-part);
}
.TcHmi_Controls_Beckhoff_TcHmiPieChart-template-legend {
background: var(--tchmi-background-part);
color: var(--tchmi-color);
}
.TcHmi_Controls_Beckhoff_TcHmiPieChart-template-legend-checkbox {
appearance: none;
background: var(--tchmi-checkbox-background);
border: 1px solid var(--tchmi-border-color);
}
.TcHmi_Controls_Beckhoff_TcHmiPieChart-template-legend-checkbox:checked {
background:
url(Images/checkbox.svg) 13px 13px,
var(--tchmi-checkbox-background-active);
background-size: 15px 15px;
}