Added minimal functionality for Robot teaching
- Added minimal HMI - Added possibility to open and close all chamber doors
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema",
|
||||
"definitions": {
|
||||
"TcHmi.Controls.Beckhoff.TcHmiRadioButton": {
|
||||
"$schema": "http://json-schema.org/draft-04/schema",
|
||||
"type": "object",
|
||||
"frameworkInstanceOf": "TcHmi.Controls.System.TcHmiControl",
|
||||
"frameworkControlType": "TcHmiRadioButton",
|
||||
"frameworkControlNamespace": "TcHmi.Controls.Beckhoff"
|
||||
},
|
||||
"TcHmi.Controls.Beckhoff.TcHmiRadioButton.StateSymbol": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "tchmi:framework#/definitions/Symbol"
|
||||
},
|
||||
{
|
||||
"frameworkSymbolSubType": {
|
||||
"$ref": "tchmi:general#/definitions/Boolean"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"TcHmi.Controls.Beckhoff.TcHmiRadioButton.TextPosition": {
|
||||
"type": "string",
|
||||
"enum": ["Left", "Right"]
|
||||
},
|
||||
"TcHmiRadioButton": {
|
||||
"$ref": "tchmi:framework#/definitions/TcHmi.Controls.Beckhoff.TcHmiRadioButton"
|
||||
},
|
||||
"TcHmiRadioButtonStateSymbol": {
|
||||
"$ref": "tchmi:framework#/definitions/TcHmi.Controls.Beckhoff.TcHmiRadioButton.StateSymbol"
|
||||
},
|
||||
"TcHmi.Controls.Beckhoff.TcHmiRadioButton.StateChangedEventObject": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"control": {
|
||||
"$ref": "tchmi:framework#/definitions/Control"
|
||||
},
|
||||
"state": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"stateOld": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"TcHmiRadioButtonStateChangedEventObject": {
|
||||
"$ref": "tchmi:framework#/definitions/TcHmi.Controls.Beckhoff.TcHmiRadioButton.StateChangedEventObject"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user