Go to file
sfam 1311e00e90 Initial support for THOMSON routers 2015-08-28 00:03:05 +01:00
config Update MQTT component and add example 2015-08-09 11:29:50 -07:00
docs Updated screenshots 2014-11-13 22:52:39 -08:00
homeassistant Initial support for THOMSON routers 2015-08-28 00:02:26 +01:00
scripts Update update script 2015-08-17 20:11:37 -07:00
tests Added test for Automation component service id list 2015-08-25 06:50:20 +02:00
.coveragerc Initial support for THOMSON routers 2015-08-28 00:03:05 +01:00
.gitignore Update MQTT component and add example 2015-08-09 11:29:50 -07:00
.gitmodules Port PyWemo from external to requirements.txt 2015-07-20 00:08:00 -07:00
.travis.yml Upgrade travis.yml to run on new infra 2015-07-10 22:00:13 -07:00
CONTRIBUTING.md update icon section 2015-06-04 16:33:34 +02:00
Dockerfile Remove broken Z-Wave support build from Docker 2015-08-22 23:32:09 -07:00
LICENSE Added MIT license 2013-10-08 21:18:22 -07:00
README.md add new entries 2015-08-11 14:38:56 +02:00
pylintrc Add REQUIREMENTS list to components 2015-07-07 00:01:46 -07:00
requirements.txt fix dnspython version 2015-08-27 14:25:21 +02:00

README.md

Home Assistant Build Status Coverage Status Join the chat at https://gitter.im/balloob/home-assistant

Home Assistant is a home automation platform running on Python 3. The goal of Home Assistant is to be able to track and control all devices at home and offer a platform for automating control. Open a demo.

Check out the website for installation instructions, tutorials and documentation.

screenshot-states

Examples of devices it can interface it:

Built home automation on top of your devices:

  • Keep a precise history of every change to the state of your house
  • Turn on the lights when people get home after sun set
  • Turn on lights slowly during sun set to compensate for less light
  • Turn off all lights and devices when everybody leaves the house
  • Offers a REST API for easy integration with other projects
  • Allow sending notifications using Instapush, Notify My Android (NMA), PushBullet, PushOver, Slack, and Jabber (XMPP)

The system is built modular so support for other devices or actions can be implemented easily. See also the section on architecture and the section on creating your own components.

If you run into issues while using Home Assistant or during development of a component, reach out to the Home Assistant help section how to reach us.

Quick-start guide

Running Home Assistant requires Python 3.4. Run the following code to get up and running:

git clone --recursive https://github.com/balloob/home-assistant.git
python3 -m venv home-assistant
cd home-assistant
python3 -m homeassistant --open-ui

The last command will start the Home Assistant server and launch its web interface. By default Home Assistant looks for the configuration file config/configuration.yaml. A standard configuration file will be written if none exists.

If you are still exploring if you want to use Home Assistant in the first place, you can enable the demo mode by adding the --demo-mode argument to the last command.

Please see the getting started guide on how to further configure Home Assistant.