Skip to content

A "simple" ESP8266 sketch for automation of the Haustür

Notifications You must be signed in to change notification settings

pilo1337/haustuer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Haustuer Automation System (HAS)

This is draft, develop in progress

settings for configuration.yaml

The Switch for mode selection:

switch:
  - platform: mqtt
    name: "Klingel Modus"
    unique_id: klingel_mode
    state_topic: "/home/haustuer/klingel/status"
    command_topic: "/home/haustuer/klingel/mode"
    payload_on: "1"
    payload_off: "0"
    state_on: "1"
    state_off: "0"

The sensors for actual ringing and status

sensor:
  - platform: mqtt
    unique_id: klingel_trigger
    name: "Klingel Trigger"
    state_topic: "/home/haustuer/klingel"

  - platform: mqtt
    name: "Klingel Status"
    unique_id: klingel_status
    state_topic: "/home/haustuer/klingel/status"

The button for opening the door

button:
  - platform: mqtt
    unique_id: dooropener
    name: "Tueroeffner"
    command_topic: "/home/haustuer/klingel/dooropener"
    payload_press: "1"

Entity card:

type: entities
entities:
  - entity: sensor.klingel_trigger
    name: Klingel
    secondary_info: last-updated
  - entity: switch.klingel_mode
    name: KlingelStumm
  - entity: button.dooropener
title: Haustür

About

A "simple" ESP8266 sketch for automation of the Haustür

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages