This commit is contained in:
2021-01-27 07:55:17 -05:00
parent 3c1342eb07
commit cf8a6b9ca7
5 changed files with 84 additions and 35 deletions

View File

@@ -1,12 +1,37 @@
esphome:
name: bedroom_tkm1
platform: ESP32
board: esp-wrover-kit
board: wemos_d1_mini32 #esp-wrover-kit
on_boot:
priority: 900
then:
- lambda: |-
id(wake_up_reason) = log(esp_sleep_get_ext1_wakeup_status())/log(2);
- priority: -100 #900 tried down to 500
then:
- lambda: |-
id(wake_up_reason1) = esp_sleep_get_ext1_wakeup_status();
- priority: 900 #900 tried down to 500
then:
- lambda: |-
id(wake_up_reason) = esp_sleep_get_ext1_wakeup_status();
#esp_default_wake_deep_sleep();
#id(wake_up_reason) = log(esp_sleep_get_ext1_wakeup_status())/log(2);
# - priority: 300.0 # after sensor setup, before WIFI initialization
# then:
# - light.turn_on:
# id: emergency_light
# brightness: 100%
# red: 100%
# green: 0%
# blue: 0%
# - priority: 225.0 # after WIFI initialization
# then:
# - light.turn_on:
# id: emergency_light
# brightness: 100%
# red: 0%
# green: 0%
# blue: 100%
wifi:
ssid: "Meneely"
@@ -41,7 +66,7 @@ mqtt:
discovery: True
username: ha
password: lorrie
keepalive: 2s
# keepalive: 2s
birth_message:
topic: bedroom_tkm1/status
payload: coming_online_birth
@@ -56,12 +81,12 @@ mqtt:
deep_sleep:
run_duration: 20s
sleep_duration: 1min #24h
sleep_duration: 40s #24h
esp32_ext1_wakeup:
pins: #[12] #, 14, 27]
- GPIO12
- GPIO14
- GPIO27
pins:
- 4 #yellow
- 12 #orange
- 32 #green
mode: ANY_HIGH
id: deep_sleep_1
@@ -70,42 +95,50 @@ globals:
type: int
restore_value: no
initial_value: '0'
- id: wake_up_reason1
type: int
restore_value: no
initial_value: '0'
sensor:
- platform: template
name: "Remote Control Wake Reason"
accuracy_decimals: 0
lambda: |-
return id(wake_up_reason);
on_value:
then:
- if:
condition:
lambda: 'return id(wake_up_reason) == 12;'
then:
- logger.log: "12, Green wire touched"
else:
- logger.log: "Non-green wire touched"
- platform: template
name: "Remote Control Wake Reason1"
accuracy_decimals: 0
lambda: |-
return id(wake_up_reason1);
# on_value:
# then:
# - if:
# condition:
# lambda: 'return id(wake_up_reason) == 4;'
# then:
# - logger.log: "4, yellow wire touched"
# else:
# - logger.log: "Non-yellow wire touched"
binary_sensor:
- platform: gpio
pin:
number: GPIO4
mode: INPUT_PULLUP
# filters:
# - delayed_on: 10ms ### <---- debounce time, was 100ms
# - delayed_off: 10s ### <---- delay to capture state change on wake up
name: "TKM Test 4 (yellow)"
id: tkm_test_4
- platform: gpio
pin:
number: GPIO12
mode: INPUT_PULLUP
filters:
- delayed_on: 10ms ### <---- debounce time, was 100ms
# - delayed_off: 10s ### <---- delay to capture state change on wake up
name: "TKM Test 12 (Green)"
name: "TKM Test 12 (orange)"
id: tkm_test_12
- platform: gpio
pin:
number: GPIO14
number: GPIO32
mode: INPUT_PULLUP
name: "TKM Test 14 (Yellow)"
id: tkm_test_14
- platform: gpio
pin:
number: GPIO27
mode: INPUT_PULLUP
name: "TKM Test 27 (Orange)"
id: tkm_test27
name: "TKM Test 32 (green)"
id: tkm_test32