4.0 KiB
title | description |
---|---|
Concepts and terminology | User explanation of Home Assistant basics |
Now you're in Home Assistant, let's go over important parts of Home Assistant and what they do.
Dashboards
Customizable pages to display information connected to and available in Home Assistant. By default there are two Dashboards, Overview and Energy. The Overview dashboard is the first thing you see after the onboarding process. More details can be found here.
Integrations
Software that allows Home Assistant to connect to other software and platforms. For example, the Philips Hue integration allows Home Assistant to talk to the Hue Bridge and read data such as the state of your lights through to controlling the lights themselves.
A full list of compatible integrations can be found here.
Once an integration has been added, the hardware and/or data are represented in Home Assistant as devices and entities.
Devices & Entities
Devices are a logical grouping for one or more entities. A device may represent a physical device and the device may have one or more sensors which appear as entities associated to the device. For example, a motion sensor is represented as a device and the motion may provide motion detection, temperature and light levels as entities. Entities have states such as on when motion is detected and off when there is no motion.
Devices and entities are used throughout Home Assistant. To name a few examples:
- Dashboards can show a state of an entity like if a light bulb is on or off as well as buttons that interact with devices like turning a light bulb on or off.
- An automation can be triggered from a state change on an entity e.g. a light turning on and control another device or entity.
- A predefined setting for light device saved as a scene.
Automations
A set of repeatable actions that can be set up to run automatically. Automations are made of three key components:
- Triggers - event(s) that start an automation like when the sun sets.
- Conditions - optional tests that must be met before continuing to running actions. For example, if someone is home.
- Actions - interact with devices such as turn on a light.
More details can be found here or try creating an automation.
Scripts
Similar to automations, repeatable actions that can be run. The difference between scripts and automations is that scripts do not have triggers like automations. This means that scripts cannot automatically run unless they are used in an automation. Scripts are particularly useful if you perform the same actions in different automations or trigger them from a dashboard. More details can be found here.
Scenes
Scenes allow you to create predefined settings for your devices. Likened to driving mode on phones, driver profiles in cars, it can change an environment to suite you. For example, your environment for watching films may have dimmer lighting, TV is switched on and higher volume. This can be saved as a scene and used without having to set individual devices every time.
Further details can be found here.
Add-ons
Depending on your installation type, you may have the ability to install third party add-ons. Add-ons are usually apps that can be run with Home Assistant but provide a quick and easy way to install, configure, and run within Home Assistant. Add-ons provide additional functionality whereas integrations connect Home Assistant to other apps.
{% include getting-started/next_step.html step="Automate Home Assistant" link="/getting-started/automation/" %}