Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion homeassistant/components/homekit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def get_accessory(hass, state, aid, config):
elif device_class == DEVICE_CLASS_ILLUMINANCE or unit in ('lm', 'lx'):
a_type = 'LightSensor'

elif state.domain in ('switch', 'remote', 'input_boolean', 'script'):
elif state.domain in ('automation', 'input_boolean', 'remote', 'script',
'switch'):
a_type = 'Switch'

if a_type is None:
Expand Down
6 changes: 4 additions & 2 deletions tests/components/homekit/test_get_accessories.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,11 @@ def test_type_sensors(type_name, entity_id, state, attrs):


@pytest.mark.parametrize('type_name, entity_id, state, attrs', [
('Switch', 'switch.test', 'on', {}),
('Switch', 'remote.test', 'on', {}),
('Switch', 'automation.test', 'on', {}),
('Switch', 'input_boolean.test', 'on', {}),
('Switch', 'remote.test', 'on', {}),
('Switch', 'script.test', 'on', {}),
('Switch', 'switch.test', 'on', {}),
])
def test_type_switches(type_name, entity_id, state, attrs):
"""Test if switch types are associated correctly."""
Expand Down
7 changes: 6 additions & 1 deletion tests/components/homekit/test_type_switches.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@


@pytest.mark.parametrize('entity_id', [
'switch.test', 'remote.test', 'input_boolean.test'])
'automation.test',
'input_boolean.test',
'remote.test',
'script.test',
'switch.test',
])
async def test_switch_set_state(hass, entity_id):
"""Test if accessory and HA are updated accordingly."""
domain = split_entity_id(entity_id)[0]
Expand Down