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,57 @@
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"TcHmi.Functions.Beckhoff.Increment.IncrementValueSymbol": {
"allOf": [
{
"$ref": "tchmi:framework#/definitions/Symbol"
},
{
"frameworkSymbolSubType": {
"$ref": "tchmi:general#/definitions/Number"
}
}
]
},
"IncrementValueSymbol": {
"$ref": "tchmi:framework#/definitions/TcHmi.Functions.Beckhoff.Increment.IncrementValueSymbol"
},
"TcHmi.Functions.Beckhoff.Decrement.DecrementValueSymbol": {
"allOf": [
{
"$ref": "tchmi:framework#/definitions/Symbol"
},
{
"frameworkSymbolSubType": {
"$ref": "tchmi:general#/definitions/Number"
}
}
]
},
"DecrementValueSymbol": {
"$ref": "tchmi:framework#/definitions/TcHmi.Functions.Beckhoff.Decrement.DecrementValueSymbol"
},
"TcHmi.Functions.Beckhoff.Log.Level": {
"type": "string",
"enum": ["Error", "Warning", "Info", "Debug"]
},
"TcHmi.Functions.Beckhoff.AuditTrail.CreateAuditLogEntry.AuditLogEntry": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"contextDomain": {
"type": "string"
},
"comment": {
"type": "string"
},
"data": {
"type": "object"
}
},
"required": ["name"]
}
}
}