Coder Social home page Coder Social logo

kdudkov / tiny-home-automation Goto Github PK

View Code? Open in Web Editor NEW
5.0 6.0 3.0 1.62 MB

Python home automation server

License: GNU General Public License v3.0

Python 80.71% HTML 11.37% JavaScript 6.63% Makefile 0.81% Shell 0.29% Dockerfile 0.18%
python home-automation mqtt openhab modbus iot iothub

tiny-home-automation's Introduction

tiny-home-automation

Small home automation system in Python, inspired by OpenHAB and Home Assistant . It isn't production-ready, but works fine on two my installations.

Works fine on Raspberry Pi. Works with sensors and actors via:

  • MQTT broker (like Mosquitto) (and via another my project you can use X10 and Ubiquity mFi plugs)
  • Modbus-TCP
  • direct support of Kodi (XBMC) server
  • direct support of Kankun Wifi Plug
  • HTTP update from any other system

Now uses yml-based rules.

Example of rule turning on backlight (sonoff s20 module) on pir sensor is active on esp8266 and turning it off 30 seconds after pir is inactive, doing this night-time only and if main light is off:

- name: 'night_light_on'
  trigger:
    items:
    - item_id: room_pir
      to: 'On'
  condition:
    condition_type: and
    conditions:
    - condition_type: state
      item_id: light_room
      state: 'Off'
    - condition_type: state
      item_id: home_mode
      state: 'night'
  action:
  - service: command
    item_id: s20_2
    value: 'On'

- name: 'night_light_off'
  trigger:
    items:
    - item_id: room_pir
      to: 'Off'
      for:
        seconds: 30
  condition:
    condition_type: and
    conditions:
    - condition_type: state
      item_id: light_room
      state: 'Off'
    - condition_type: state
      item_id: home_mode
      state: 'night'
  action:
  - service: command
    item_id: s20_2
    value: 'Off'

tiny-home-automation's People

Contributors

kdudkov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.