Giter Site home page Giter Site logo

esphome_external's Introduction

ESPHome External Components

Repository contains additional components for ESPHome.

  • ACBinarySensor: Reliable binary sensor for A/C switches. Compatible with Luminea QS-WIFI-S04-2C, but I assume similar models will work as well.
    Example configuration:
    esphome:
      name: kitchen-lights
      platform: ESP8266
      board: esp01_1m
    
    external_components:
      - source:
          type: git
          url: https://github.com/dominikberse/esphome_external
        components: [ ac_binary_sensor ]
    
    binary_sensor:
      - platform: ac_binary_sensor
        # A/C frequency is at 50Hz
        frequency: 50
        # 2 pulses to trigger (increase if working unreliable)
        threshold: 2 
        pin:
          number: GPIO12
          inverted: true
        id: switch_1
        internal: true
        on_press:
          then:
            - light.toggle: light_1
      - platform: ac_binary_sensor
        # A/C frequency is at 50Hz
        frequency: 50
        # 2 pulses to trigger (increase if working unreliable)
        threshold: 2 
        pin:
          number: GPIO13
          inverted: true
        id: switch_2
        internal: true
        on_press:
          then:
            - light.toggle: light_2
    
    light:
      - platform: binary
        name: "Kitchen Light"
        id: light_1
        output: relay_1
      - platform: binary
        name: "Kitchen Table Light"
        id: light_2
        output: relay_2
          
    output:
      - platform: gpio
        pin: GPIO14
        id: relay_1
      - platform: gpio
        pin: GPIO15
        id: relay_2
    

esphome_external's People

Contributors

dominikberse avatar

Watchers

 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.