Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.onkyo.services Namespace Reference

Functions

None async_register_services (HomeAssistant hass)
 

Variables

list ACCEPTED_VALUES
 
string ATTR_HDMI_OUTPUT = "hdmi_output"
 
 ONKYO_SELECT_OUTPUT_SCHEMA
 
string SERVICE_SELECT_HDMI_OUTPUT = "onkyo_select_hdmi_output"
 

Detailed Description

Onkyo services.

Function Documentation

◆ async_register_services()

None homeassistant.components.onkyo.services.async_register_services ( HomeAssistant  hass)
Register Onkyo services.

Definition at line 43 of file services.py.

Variable Documentation

◆ ACCEPTED_VALUES

list homeassistant.components.onkyo.services.ACCEPTED_VALUES
Initial value:
1 = [
2  "no",
3  "analog",
4  "yes",
5  "out",
6  "out-sub",
7  "sub",
8  "hdbaset",
9  "both",
10  "up",
11 ]

Definition at line 23 of file services.py.

◆ ATTR_HDMI_OUTPUT

string homeassistant.components.onkyo.services.ATTR_HDMI_OUTPUT = "hdmi_output"

Definition at line 22 of file services.py.

◆ ONKYO_SELECT_OUTPUT_SCHEMA

homeassistant.components.onkyo.services.ONKYO_SELECT_OUTPUT_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(ATTR_ENTITY_ID): cv.entity_ids,
4  vol.Required(ATTR_HDMI_OUTPUT): vol.In(ACCEPTED_VALUES),
5  }
6 )

Definition at line 34 of file services.py.

◆ SERVICE_SELECT_HDMI_OUTPUT

string homeassistant.components.onkyo.services.SERVICE_SELECT_HDMI_OUTPUT = "onkyo_select_hdmi_output"

Definition at line 40 of file services.py.