DEV Community

Cover image for Home Assistant - Configuring devices: Step 2
André Hatlo-Johansen
André Hatlo-Johansen

Posted on

Home Assistant - Configuring devices: Step 2

If you haven't seen my last post on how to install Home Assistant on a Rapsberry Pi, check my previous post.

Requirements

  • Successfully installed Home assistant on a Raspberry Pi
  • Some type of smart device and gateway connected to your network

Configuration of devices:

Go to your HA web interface by typing http://ipaddress:8123 in your browser.

The main menu will look something like this:

The Main menu

HA Main menu

  • Overview
    • This is where your UI exists.
  • Map
    • HA has a map interface for tracking and estimating time.
  • Logbook
    • Here HA logs all events that happen in your smart home.
  • History
    • Check out your sensors/devices/places history, how they act over time.
  • MDI Icon Index
    • This is a custom icon page i added, i will get back to this and show you how this is done.
  • Configuration
    • Everything you can do with HA gets configured here.

The Configuration menu

Select configuration in the main menu.

You will see a menu that looks something like this:

HA Config

  • Home Assistant Cloud

    • Sign up for the HA Cloud service, this makes it possible to use your interface from all around the world. Without any port forwarding.
  • Integrations

    • All new devices on your network has to get setup here before anything else.
  • Users

    • Add user accounts that can access HA web interface here.
  • General

    • Here you can restart your server/core/groups/automations/scripts and validate your configuration files for quick debugging.
  • Persons

    • Add people and connect them to the user account you would like.
  • Entity Registry

    • An overview over all devices. Also possible to override naming for each device.
  • Area Registry

    • Define the places in your home. For example bathroom, kitchen, livingroom etc. These places can then be assigned to each of your devices.
  • Automation

    • Here is where the magic happens. Where you can automate your smart devices as you see fit. Turn off all lights after 23:00 or set the temperature up after 07:00.
  • Script

    • Script actions to be used in Lovelace UI. For example create a restart HA script that calls action homeassistant.restart so you can easily restart the server from your UI.
  • Z-Wave

    • You will probably not have this in your configuration unless you've activated z-wave in your configration.yaml file. Here is where you can add Z-wave nodes and configure them.
  • Customization

    • Tweak entity attributes or add/edit customizations that override the enities attributes.

Integrations

In the configuration menu, go to Integrations.

Under Discovered you'll see all devices Home Assistant can find on your network.

HA Discovered

Home assistant has made integrating devices as easy as pie. Just hit the button CONFIGURE and follow the steps:

IKEA tradfri integration

Click CONFIGURE next to IKEA TRÅDFRI.

Ikea connect

Fill inn the Security Code from underneath your IKEA Trådfri Gateway.

Ikea security code

Click Submit and accept the list of IKEA Trådfri devices HA lists up.

Phillips hue integration

Click CONFIGURE next to Philips Hue.

Philips hue gateway

Locate your Philips gateway and press the button located on topp of the gateway.

Then accept all devices HA lists up in the next step.

Back in Integrations

You should now have a list of devices depending on what you have configured from integrations.

This is what my list looks like:

HA Integrations

Developer tools

Underneath the Main menu you will see the Developer tools, this is worth mentioning since it will be used a lot during the device automation/configuration stage.

HA Dev tools

  • Services (remote control icon)

    • Here its possible to run/test all services that HA has integrated.
  • States (< > icons)

    • This is the place to have total control over ALL your entities.
    • Check if their online, or if they exist at all.
  • Events (radio tower icon)

    • I havent personally used this function much, but as far as i know this is the place to run events.
  • Templates (document <> icon)

    • When doing advanced configuration with HA, its possible to create templates that act as sensors. This is the place to test your tempates and see if you get the return values your looking for.
  • About (info icon)

    • The place to check your HA version or to check what the HA log is outputting.

Hope this gives a better understanding of the fundamentals of HA and how to configure devices on your network.

Want more?

Get familiar with Home Assistant by reading the docs!

Top comments (0)