Files
Norbert Rittel 66af5ca1e9 Improve action descriptions of ness_alarm integration (#138921)
- for the panic action change the description to "Triggers a panic _alarm_" as we don't want to trigger a panic ;-)
- for the aux action replace "Trigger …" with "Changes the state of an aux output" as it can turn this off as well
- clarify the description of the state field, dropping "true" for a UI-friendly wording
2025-02-20 10:04:05 +01:00

29 lines
739 B
JSON

{
"services": {
"aux": {
"name": "Aux",
"description": "Changes the state of an aux output.",
"fields": {
"output_id": {
"name": "Output ID",
"description": "The aux output you wish to change."
},
"state": {
"name": "State",
"description": "The on/off state of the output. If P14xE 8E is enabled then turning on will pulse the output for the time specified in P14(x+4)E."
}
}
},
"panic": {
"name": "Panic",
"description": "Triggers a panic alarm.",
"fields": {
"code": {
"name": "Code",
"description": "The user code to use to trigger the panic alarm."
}
}
}
}
}