We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear all, It is unclear to me ( if possible ) how I can read/use the model points as symbols .
For example on model 715 I want to set 'OpCtl' to 1 , writing something like Model715.OpCtl = 'START'
from model_715.json : "" { "access": "RW", "desc": "Commands to PCS. Enumerated value.", "label": "Set Operation", "name": "OpCtl", "size": 1, "symbols": [ { "label": "Stop the DER", "name": "STOP", "value": 0 }, { "label": "Start the DER", "name": "START", "value": 1 }, { "label": "Enter Standby Mode", "name": "ENTER_STANDBY", "value": 2 }, { "label": "Exit Standby Mode", "name": "EXIT_STANDBY", "value": 3 } ], "type": "enum16" } "" Thanks Antonio
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dear all,
It is unclear to me ( if possible ) how I can read/use the model points as symbols .
For example on model 715 I want to set 'OpCtl' to 1 , writing something like
Model715.OpCtl = 'START'
from model_715.json :
""
{
"access": "RW",
"desc": "Commands to PCS. Enumerated value.",
"label": "Set Operation",
"name": "OpCtl",
"size": 1,
"symbols": [
{
"label": "Stop the DER",
"name": "STOP",
"value": 0
},
{
"label": "Start the DER",
"name": "START",
"value": 1
},
{
"label": "Enter Standby Mode",
"name": "ENTER_STANDBY",
"value": 2
},
{
"label": "Exit Standby Mode",
"name": "EXIT_STANDBY",
"value": 3
}
],
"type": "enum16"
}
""
Thanks Antonio
The text was updated successfully, but these errors were encountered: