core/README.md

47 lines
4.5 KiB
Markdown
Raw Normal View History

2015-06-22 22:03:02 +00:00
# Home Assistant [![Build Status](https://travis-ci.org/balloob/home-assistant.svg?branch=master)](https://travis-ci.org/balloob/home-assistant) [![Coverage Status](https://img.shields.io/coveralls/balloob/home-assistant.svg)](https://coveralls.io/r/balloob/home-assistant?branch=master) [![Join the chat at https://gitter.im/balloob/home-assistant](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/balloob/home-assistant?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2014-09-26 21:27:28 +00:00
2015-07-11 05:33:51 +00:00
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.](https://home-assistant.io/demo/)
2015-07-11 05:33:51 +00:00
Check out [the website](https://home-assistant.io) for installation instructions, tutorials and documentation.
2014-09-26 21:27:28 +00:00
2015-07-11 05:33:51 +00:00
[![screenshot-states](https://raw.github.com/balloob/home-assistant/master/docs/screenshots.png)](https://home-assistant.io/demo/)
Examples of devices it can interface it:
2014-09-26 21:27:28 +00:00
2015-08-11 12:38:06 +00:00
* Monitoring connected devices to a wireless router: [OpenWrt](https://openwrt.org/), [Tomato](http://www.polarcloud.com/tomato), [Netgear](http://netgear.com), [DD-WRT](http://www.dd-wrt.com/site/index), [TPLink](http://www.tp-link.us/), and [ASUSWRT](http://event.asus.com/2013/nw/ASUSWRT/)
* [Philips Hue](http://meethue.com) lights, [WeMo](http://www.belkin.com/us/Products/home-automation/c/wemo-home-automation/) switches, [Efergy](https://efergy.com) plugs, [Edimax](http://www.edimax.com/) switches, RFXtrx sensors, and [Tellstick](http://www.telldus.se/products/tellstick) devices and sensors
* [Google Chromecasts](http://www.google.com/intl/en/chrome/devices/chromecast), [Music Player Daemon](http://www.musicpd.org/), [Logitech Squeezebox](https://en.wikipedia.org/wiki/Squeezebox_%28network_music_player%29), and [Kodi (XBMC)](http://kodi.tv/)
* Support for [ISY994](https://www.universal-devices.com/residential/isy994i-series/) (Insteon and X10 devices), [Z-Wave](http://www.z-wave.com/), [Nest Thermostats](https://nest.com/), [Arduino](https://www.arduino.cc/), [Raspberry Pi](https://www.raspberrypi.org/), and [Modbus](http://www.modbus.org/)
* Integrate data from the [Bitcoin](https://bitcoin.org) network, meteorological data from [OpenWeatherMap](http://openweathermap.org/) and [Forecast.io](https://forecast.io/), [Transmission](http://www.transmissionbt.com/), or [SABnzbd](http://sabnzbd.org).
2015-07-11 05:33:51 +00:00
* [See full list of supported devices](https://home-assistant.io/components/)
Built home automation on top of your devices:
* Keep a precise history of every change to the state of your house
2014-09-26 21:27:28 +00:00
* Turn on the lights when people get home after sun set
2015-07-11 05:33:51 +00:00
* Turn on lights slowly during sun set to compensate for less light
2014-09-26 21:27:28 +00:00
* Turn off all lights and devices when everybody leaves the house
2015-02-28 02:29:49 +00:00
* Offers a [REST API](https://home-assistant.io/developers/api.html) for easy integration with other projects
2015-08-06 14:57:36 +00:00
* Allow sending notifications using [Instapush](https://instapush.im), [Notify My Android (NMA)](http://www.notifymyandroid.com/), [PushBullet](https://www.pushbullet.com/), [PushOver](https://pushover.net/), [Slack](https://slack.com/), and [Jabber (XMPP)](http://xmpp.org)
2013-12-10 08:36:53 +00:00
The system is built modular so support for other devices or actions can be implemented easily. See also the [section on architecture](https://home-assistant.io/developers/architecture.html) and the [section on creating your own components](https://home-assistant.io/developers/creating_components.html).
2014-09-26 21:27:28 +00:00
2015-07-11 05:33:51 +00:00
If you run into issues while using Home Assistant or during development of a component, reach out to the [Home Assistant help section](https://home-assistant.io/help/) how to reach us.
2014-11-21 07:03:21 +00:00
2015-07-11 05:33:51 +00:00
## Quick-start guide
2014-09-26 21:27:28 +00:00
2015-07-11 05:33:51 +00:00
Running Home Assistant requires [Python 3.4](https://www.python.org/). Run the following code to get up and running:
2014-09-26 21:27:28 +00:00
2015-07-11 05:33:51 +00:00
```
2014-09-26 21:27:28 +00:00
git clone --recursive https://github.com/balloob/home-assistant.git
2015-07-11 04:32:02 +00:00
python3 -m venv home-assistant
2014-09-26 21:27:28 +00:00
cd home-assistant
python3 -m homeassistant --open-ui
2014-09-26 21:27:28 +00:00
```
2015-07-11 05:33:51 +00:00
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.
2014-09-26 21:27:28 +00:00
2015-05-21 16:43:38 +00:00
Please see [the getting started guide](https://home-assistant.io/getting-started/) on how to further configure Home Assistant.