Skip to content

Latest commit

 

History

History
127 lines (95 loc) · 4.18 KB

HomeAssistantSetup.md

File metadata and controls

127 lines (95 loc) · 4.18 KB

Home Assistant Setup

  • 1

  • Features

    • Command Line
      • VLC
    • Telegram
    • Conversation
    • Device Tracker
    • Greeting

Modules

Services

Material Design Icons' growing icon collection allows designers and developers targeting various platforms to download icons in the format, color and size they need for any project. Homepage

Installation

hochob@server:~$ sudo apt install python3-setuptools
hochob@server:~$ sudo apt install python3-pip
hochob@server:~$ sudo apt install fortunes
hochob@server:~$ sudo pip3 install --upgrade pip
hochob@server:~$ sudo pip3 install homeassistant

Ubuntu Server

hochob@server:~$ sudo pip install flask_sqlalchemy
hochob@server:~$ sudo pip install sqlalchemy

Execution

hochob@server:~$ hass --open-ui
Unable to find configuration. Creating default one in /home/hochob/.homeassistant
Config directory: /home/hochob/.homeassistant
INFO:homeassistant.core:Bus:Handling <Event service_registered[L]: service=turn_off, domain=homeassistant>
...

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        Hello, and welcome to Home Assistant!

        We'll hope that we can make all your dreams come true.

        Here are some resources to get started:

         - Configuring Home Assistant:
           https://home-assistant.io/getting-started/configuration/

         - Available components:
           https://home-assistant.io/components/

         - Troubleshooting your configuration:
           https://home-assistant.io/getting-started/troubleshooting-configuration/

         - Getting help:
           https://home-assistant.io/help/

        This message is generated by the introduction component. You can
        disable it in configuration.yaml.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...
hochob@server:~$ cd .homeassistant/
hochob@server:~/.homeassistant$ ls
configuration.yaml  deps  groups.yaml  home-assistant.log  home-assistant_v2.db  tts
hochob@server:~/.homeassistant$ cp configuration.yaml configuration.yaml.original
hochob@server:~/.homeassistant$ cp ~/CodeLabs/Hochob/Services/Automation/HomeAssistant/configuration.yaml.2.0 configuration.yaml

Check Config

user@server:~$ hass --script check_config
Testing configuration at /root/.homeassistant
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up sun
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up group
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up switch
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up conversation
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up updater
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up http
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up notify
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up automation
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up recorder
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up websocket_api
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up api
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up media_player
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up tts
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up config
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up history
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up frontend
17-03-19 08:03:19 INFO (MainThread) [homeassistant.setup] Setting up logbook
user@server:~$