1
mirror of https://github.com/home-assistant/core synced 2024-09-06 10:29:55 +02:00
Go to file
Ryan Kraus ff470c8ffe Added core daemon function as flags.
Created three additional flags for the hass command:
-v -  Toggle verbose log file output
—pid-file -  Specify PID file path
—daemon -  Launch as daemon (nix only)

The core now binds to SIGQUIT on nix systems to trigger a clean
shutdown.

Modified HTTP server to write logging messages through the logging
module.
2015-09-01 02:12:00 -04:00
config Update MQTT component and add example 2015-08-09 11:29:50 -07:00
docs Update screenshot 2015-08-30 17:48:06 -07:00
homeassistant Added core daemon function as flags. 2015-09-01 02:12:00 -04:00
scripts Deprecate scripts/update 2015-08-30 22:33:59 -07:00
tests Fix broken conversation test 2015-08-31 00:54:00 -07:00
.coveragerc Add aruba device tracker to coveragerc 2015-08-31 08:52:15 -07: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 Implemented comments from Paulus. 2015-08-29 22:19:52 -04:00
CONTRIBUTING.md update icon section 2015-06-04 16:33:34 +02:00
Dockerfile Update Dockerfile for new pip requirements 2015-08-29 23:02:36 -07:00
LICENSE Added MIT license 2013-10-08 21:18:22 -07:00
pylintrc Created setup.py for standard installs. 2015-08-29 18:59:05 -04:00
README.md Update efergy descriptin in README 2015-08-31 08:18:27 -07:00
requirements_all.txt Update pywemo to 0.3 2015-08-30 22:48:48 +01:00
requirements.txt Pip requirements and fixes. 2015-08-29 23:17:47 -04:00
setup.py Fix download link in setup.py 2015-08-30 00:42:46 -07:00

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.

To get started:

python3 -m pip install homeassistant
hass --open-ui

Check out the website for a demo, 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 and can interface with MQTT 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, check the Home Assistant help section how to reach us.