mirror of
https://github.com/Anonym-tsk/smart-domofon.git
synced 2025-12-06 11:36:57 +03:00
452 lines
11 KiB
YAML
Executable File
452 lines
11 KiB
YAML
Executable File
# Smart Intercom project
|
|
# https://github.com/Anonym-tsk/smart-domofon/tree/master/esphome
|
|
|
|
############# User configuration #############
|
|
|
|
substitutions:
|
|
# NodeMCU v3 board
|
|
board: nodemcuv2
|
|
pin_relay_answer: D0
|
|
pin_relay_open: D1
|
|
pin_led_red: D2
|
|
pin_led_green: D3
|
|
pin_led_blue: D4
|
|
pin_call_detect: D5
|
|
pin_btn_accept: D6
|
|
|
|
# Relays configuration
|
|
relays_inverted: True
|
|
|
|
# Wifi credentials
|
|
wifi_ssid: !secret wifi_ssid
|
|
wifi_password: !secret wifi_password
|
|
ap_ssid: "Domofon"
|
|
ap_password: "1234567890"
|
|
|
|
# OTA and API
|
|
ota_password: "esphome"
|
|
api_password: "esphome"
|
|
|
|
# Software configuration
|
|
call_end_detect_delay: 3000ms # Interval between rings to detect incoming call
|
|
relay_before_answer_delay: 10ms # Delay before answer call
|
|
relay_answer_on_time: 1500ms # Delay between answer call and open/close door
|
|
relay_open_on_time: 600ms # How long the "open door button" will be pressed
|
|
relay_after_open_delay: 500ms # Delay in "answer" state after opening door
|
|
short_click_time_from: 50ms # Short button click min time
|
|
short_click_time_to: 1000ms # Long button click min time
|
|
|
|
########### End user configuration ###########
|
|
|
|
esphome:
|
|
name: domofon
|
|
platform: ESP8266
|
|
board: $board
|
|
|
|
wifi:
|
|
ssid: $wifi_ssid
|
|
password: $wifi_password
|
|
fast_connect: on
|
|
ap:
|
|
ssid: $ap_ssid
|
|
password: $ap_password
|
|
|
|
logger:
|
|
|
|
ota:
|
|
password: $ota_password
|
|
|
|
# Blue status led
|
|
status_led:
|
|
pin: $pin_led_blue
|
|
|
|
api:
|
|
password: $api_password
|
|
reboot_timeout: 0s
|
|
services:
|
|
# Accept call service for Home Assistant
|
|
- service: accept_call
|
|
then:
|
|
- logger.log: "Call service 'Accept Call'"
|
|
- if:
|
|
condition:
|
|
binary_sensor.is_on: incoming_call
|
|
then:
|
|
script.execute: call_accept
|
|
else:
|
|
logger.log: "No incoming call"
|
|
|
|
# Reject call service for Home Assistant
|
|
- service: reject_call
|
|
then:
|
|
- logger.log: "Call service 'Accept Call'"
|
|
- if:
|
|
condition:
|
|
binary_sensor.is_on: incoming_call
|
|
then:
|
|
script.execute: call_reject
|
|
else:
|
|
logger.log: "No incoming call"
|
|
|
|
script:
|
|
# Accept incoming call
|
|
- id: call_accept
|
|
then:
|
|
- logger.log: "Accept call"
|
|
- script.execute: state_no_call
|
|
- delay: $relay_before_answer_delay
|
|
- output.turn_on: relay_answer
|
|
- delay: $relay_answer_on_time
|
|
- output.turn_on: relay_open
|
|
- delay: $relay_open_on_time
|
|
- output.turn_off: relay_open
|
|
- delay: $relay_after_open_delay
|
|
- output.turn_off: relay_answer
|
|
|
|
# Reject incoming call
|
|
- id: call_reject
|
|
then:
|
|
- logger.log: "Reject call"
|
|
- script.execute: state_no_call
|
|
- delay: $relay_before_answer_delay
|
|
- output.turn_on: relay_answer
|
|
- delay: $relay_answer_on_time
|
|
- output.turn_off: relay_answer
|
|
|
|
# No call state
|
|
- id: state_no_call
|
|
then:
|
|
- logger.log: "Set state 'No call'"
|
|
- if:
|
|
condition:
|
|
switch.is_on: auto_open_once
|
|
then:
|
|
script.execute: led_blink_green_1_on
|
|
- if:
|
|
condition:
|
|
switch.is_on: auto_open
|
|
then:
|
|
script.execute: led_blink_green_2_on
|
|
- if:
|
|
condition:
|
|
switch.is_on: auto_reject
|
|
then:
|
|
script.execute: led_red_on_soft
|
|
- if:
|
|
condition:
|
|
and:
|
|
- switch.is_off: auto_open_once
|
|
- switch.is_off: auto_open
|
|
- switch.is_off: auto_reject
|
|
then:
|
|
script.execute: led_off
|
|
|
|
# Call state
|
|
- id: state_call
|
|
then:
|
|
- logger.log: "Set state 'Incoming call'"
|
|
- if:
|
|
condition:
|
|
switch.is_on: auto_reject
|
|
then:
|
|
script.execute: call_reject
|
|
- if:
|
|
condition:
|
|
switch.is_on: auto_open
|
|
then:
|
|
script.execute: call_accept
|
|
- if:
|
|
condition:
|
|
switch.is_on: auto_open_once
|
|
then:
|
|
- script.execute: call_accept
|
|
- delay: 1s
|
|
- switch.turn_off: auto_open_once
|
|
- if:
|
|
condition:
|
|
and:
|
|
- switch.is_off: auto_open
|
|
- switch.is_off: auto_open_once
|
|
- switch.is_off: auto_reject
|
|
then:
|
|
script.execute: led_blink_red_1_on
|
|
|
|
# Permanent blink green led with one flash
|
|
- id: led_blink_green_1_on
|
|
then:
|
|
light.turn_on:
|
|
id: rgb_led
|
|
effect: "Blink Green Once"
|
|
|
|
# Permanent blink green led with two flashes
|
|
- id: led_blink_green_2_on
|
|
then:
|
|
light.turn_on:
|
|
id: rgb_led
|
|
effect: "Blink Green Twice"
|
|
|
|
# Once blink green led with one flash
|
|
- id: led_blink_green_1_once
|
|
then:
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 100%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 200ms
|
|
- script.execute: led_off
|
|
|
|
# Permanent blink red led with one flash
|
|
- id: led_blink_red_1_on
|
|
then:
|
|
light.turn_on:
|
|
id: rgb_led
|
|
effect: "Blink Red"
|
|
|
|
# Permanent on red led with soft brightness
|
|
- id: led_red_on_soft
|
|
then:
|
|
light.turn_on:
|
|
id: rgb_led
|
|
brightness: 40%
|
|
red: 100%
|
|
green: 0%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
|
|
# Turn off leds
|
|
- id: led_off
|
|
then:
|
|
light.turn_off:
|
|
id: rgb_led
|
|
transition_length: 100ms
|
|
|
|
switch:
|
|
# Automatically open door switch
|
|
- platform: template
|
|
name: "Domofon automatically open"
|
|
id: auto_open
|
|
icon: "mdi:door-open"
|
|
optimistic: true
|
|
restore_state: true
|
|
on_turn_on:
|
|
- switch.turn_off: auto_open_once
|
|
- switch.turn_off: auto_reject
|
|
- script.execute: state_no_call
|
|
on_turn_off:
|
|
script.execute: state_no_call
|
|
|
|
# Automatically open door once switch
|
|
- platform: template
|
|
name: "Domofon automatically open once"
|
|
id: auto_open_once
|
|
icon: "mdi:door-open"
|
|
optimistic: true
|
|
restore_state: true
|
|
on_turn_on:
|
|
- switch.turn_off: auto_open
|
|
- switch.turn_off: auto_reject
|
|
- script.execute: state_no_call
|
|
on_turn_off:
|
|
script.execute: state_no_call
|
|
|
|
# Automatically reject call switch
|
|
- platform: template
|
|
name: "Domofon automatically reject"
|
|
id: auto_reject
|
|
icon: "mdi:door-closed-lock"
|
|
optimistic: true
|
|
restore_state: true
|
|
on_turn_on:
|
|
- switch.turn_off: auto_open
|
|
- switch.turn_off: auto_open_once
|
|
- script.execute: state_no_call
|
|
on_turn_off:
|
|
script.execute: state_no_call
|
|
|
|
# RGB Led (not exported to Home Assistant)
|
|
light:
|
|
- platform: rgb
|
|
id: rgb_led
|
|
name: "Domofon led"
|
|
internal: true
|
|
restore_mode: ALWAYS_OFF
|
|
red: led_red
|
|
green: led_green
|
|
blue: led_blue
|
|
effects:
|
|
- automation:
|
|
name: "Blink Green Once"
|
|
sequence:
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 100%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 200ms
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 1%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 3000ms
|
|
- automation:
|
|
name: "Blink Green Twice"
|
|
sequence:
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 100%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 200ms
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 1%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 200ms
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 100%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 200ms
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 1%
|
|
red: 0%
|
|
green: 100%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 3000ms
|
|
- automation:
|
|
name: "Blink Red"
|
|
sequence:
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 100%
|
|
red: 100%
|
|
green: 0%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 500ms
|
|
- light.turn_on:
|
|
id: rgb_led
|
|
brightness: 1%
|
|
red: 100%
|
|
green: 0%
|
|
blue: 0%
|
|
transition_length: 100ms
|
|
- delay: 500ms
|
|
|
|
output:
|
|
# Red LED
|
|
- platform: esp8266_pwm
|
|
id: led_red
|
|
pin:
|
|
number: $pin_led_red
|
|
mode: OUTPUT
|
|
|
|
# Green LED
|
|
- platform: esp8266_pwm
|
|
id: led_green
|
|
pin:
|
|
number: $pin_led_green
|
|
mode: OUTPUT
|
|
|
|
# Blue LED
|
|
- platform: esp8266_pwm
|
|
id: led_blue
|
|
pin:
|
|
number: $pin_led_blue
|
|
mode: OUTPUT
|
|
|
|
# Relay answer
|
|
- platform: gpio
|
|
id: relay_answer
|
|
pin:
|
|
number: $pin_relay_answer
|
|
mode: OUTPUT
|
|
inverted: $relays_inverted
|
|
|
|
# Relay door open
|
|
- platform: gpio
|
|
id: relay_open
|
|
pin:
|
|
number: $pin_relay_open
|
|
mode: OUTPUT
|
|
inverted: $relays_inverted
|
|
|
|
binary_sensor:
|
|
# Call detection
|
|
- platform: gpio
|
|
name: "Domofon incoming call"
|
|
id: incoming_call
|
|
device_class: lock
|
|
pin:
|
|
number: $pin_call_detect
|
|
mode: INPUT_PULLUP
|
|
inverted: True
|
|
filters:
|
|
delayed_off: $call_end_detect_delay
|
|
on_press:
|
|
then:
|
|
script.execute: state_call
|
|
on_release:
|
|
then:
|
|
script.execute: state_no_call
|
|
|
|
# Accept HW button
|
|
- platform: gpio
|
|
name: "Domofon button"
|
|
id: button
|
|
pin:
|
|
number: $pin_btn_accept
|
|
mode: INPUT_PULLUP
|
|
inverted: True
|
|
filters:
|
|
delayed_on: 25ms
|
|
on_multi_click:
|
|
# Short click - open door or enable once auto opening
|
|
- timing:
|
|
- ON for $short_click_time_from to $short_click_time_to
|
|
then:
|
|
if:
|
|
condition:
|
|
binary_sensor.is_on: incoming_call
|
|
then:
|
|
script.execute: call_accept
|
|
else:
|
|
if:
|
|
condition:
|
|
switch.is_on: auto_open_once
|
|
then:
|
|
switch.turn_on: auto_open
|
|
else:
|
|
switch.turn_on: auto_open_once
|
|
# Long click - disable auto opening
|
|
- timing:
|
|
- ON for at least $short_click_time_to
|
|
then:
|
|
if:
|
|
condition:
|
|
binary_sensor.is_on: incoming_call
|
|
then:
|
|
script.execute: call_reject
|
|
else:
|
|
- switch.turn_off: auto_open
|
|
- switch.turn_off: auto_open_once
|
|
- script.execute: led_blink_green_1_once
|