The hdmi_cec.select_device action has an inconsistent description that causes wrong (machine) translations. This commit brings it in line with all other actions in the integration.
71 lines
2.3 KiB
JSON
71 lines
2.3 KiB
JSON
{
|
|
"services": {
|
|
"power_on": {
|
|
"name": "Power on",
|
|
"description": "Powers on all devices which support this function."
|
|
},
|
|
"select_device": {
|
|
"name": "Select device",
|
|
"description": "Selects an HDMI device.",
|
|
"fields": {
|
|
"device": {
|
|
"name": "[%key:common::config_flow::data::device%]",
|
|
"description": "Address of device to select. Can be an entity ID, physical address or alias from configuration."
|
|
}
|
|
}
|
|
},
|
|
"send_command": {
|
|
"name": "Send command",
|
|
"description": "Sends CEC command into HDMI CEC capable adapter.",
|
|
"fields": {
|
|
"att": {
|
|
"name": "Att",
|
|
"description": "Optional parameters."
|
|
},
|
|
"cmd": {
|
|
"name": "Command",
|
|
"description": "Command itself. Could be decimal number or string with hexadecimal notation: \"0x10\"."
|
|
},
|
|
"dst": {
|
|
"name": "Destination",
|
|
"description": "Destination for command. Could be decimal number or string with hexadecimal notation: \"0x10\"."
|
|
},
|
|
"raw": {
|
|
"name": "Raw",
|
|
"description": "Raw CEC command in format \"00:00:00:00\" where first two digits are source and destination, second byte is command and optional other bytes are command parameters. If raw command specified, other params are ignored."
|
|
},
|
|
"src": {
|
|
"name": "Source",
|
|
"description": "Source of command. Could be decimal number or string with hexadecimal notation: \"0x10\"."
|
|
}
|
|
}
|
|
},
|
|
"standby": {
|
|
"name": "[%key:common::state::standby%]",
|
|
"description": "Places in standby all devices which support this function."
|
|
},
|
|
"update": {
|
|
"name": "Update",
|
|
"description": "Updates devices state from network."
|
|
},
|
|
"volume": {
|
|
"name": "Volume",
|
|
"description": "Increases or decreases the system volume.",
|
|
"fields": {
|
|
"down": {
|
|
"name": "Down",
|
|
"description": "Decreases the volume x levels."
|
|
},
|
|
"mute": {
|
|
"name": "Mute",
|
|
"description": "Mutes the audio system."
|
|
},
|
|
"up": {
|
|
"name": "Up",
|
|
"description": "Increases the volume x levels."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|