mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-25 04:16:52 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
1.1 KiB
1.1 KiB
title, description, logo, ha_category, ha_qa_scale, ha_release
title | description | logo | ha_category | ha_qa_scale | ha_release | |
---|---|---|---|---|---|---|
Switches | Instructions on how to set up your switches with Home Assistant. | home-assistant.png |
|
internal | 0.7 |
Keeps track which switches are in your environment, their state and allows you to control them.
- Maintains a state per switch and a combined state
all_switches
. - Registers services
switch.turn_on
,switch.turn_off
, andswitch.toggle
to control switches.
Use the services
In the frontend open the sidebar. At the bottom, under Developer Tools, click Services. From the Service dropdown menu choose switch.turn_on
or switch.turn_off
from the list of available services. In the Entity dropdown menu choose or enter the entity ID you want to work with. This will enter something like the sample below into the Service Data field. Now hit CALL SERVICE.
{"entity_id":"switch.livingroom_pin2"}
Service data attribute | Optional | Description |
---|---|---|
entity_id |
yes | Only act on a specific switch. Otherwise, it targets all switches. |