Added a new bedroom button box.
This commit is contained in:
@@ -3,62 +3,36 @@ esphome:
|
||||
platform: ESP32
|
||||
board: wemos_d1_mini32 #esp-wrover-kit
|
||||
on_boot:
|
||||
- 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%
|
||||
|
||||
# - priority: 901 #900 tried down to 500
|
||||
# then:
|
||||
# - lambda: |-
|
||||
# esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);
|
||||
# gpio_pullup_dis(GPIO_NUM_33);
|
||||
# gpio_pulldown_en(GPIO_NUM_33);
|
||||
# gpio_pullup_dis(GPIO_NUM_34);
|
||||
# gpio_pulldown_en(GPIO_NUM_34);
|
||||
# gpio_pullup_dis(GPIO_NUM_35);
|
||||
# gpio_pulldown_en(GPIO_NUM_35);
|
||||
|
||||
wifi:
|
||||
ssid: "Meneely"
|
||||
password: "punxsutawney1"
|
||||
|
||||
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
||||
# ap:
|
||||
# ssid: "BigBlue1 Fallback Hotspot"
|
||||
# password: "QNWj7LmaNoD6"
|
||||
manual_ip:
|
||||
# Set this to the IP of the ESP
|
||||
static_ip: 192.168.87.36
|
||||
# Set this to the IP address of the router. Often ends with .1
|
||||
gateway: 192.168.86.1
|
||||
# The subnet of the network. 255.255.255.0 works for most home networks.
|
||||
subnet: 255.255.254.0
|
||||
fast_connect: True
|
||||
|
||||
# captive_portal:
|
||||
|
||||
# Enable logging
|
||||
logger:
|
||||
level: INFO
|
||||
|
||||
# Enable Home Assistant API
|
||||
api:
|
||||
|
||||
ota:
|
||||
|
||||
mqtt:
|
||||
@@ -84,9 +58,9 @@ deep_sleep:
|
||||
sleep_duration: 40s #24h
|
||||
esp32_ext1_wakeup:
|
||||
pins:
|
||||
- 4 #yellow
|
||||
- 12 #orange
|
||||
- 32 #green
|
||||
- 33 #yellow
|
||||
- 34 #orange
|
||||
- 35 #white
|
||||
mode: ANY_HIGH
|
||||
id: deep_sleep_1
|
||||
|
||||
@@ -95,50 +69,32 @@ 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);
|
||||
- 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
|
||||
number: GPIO33
|
||||
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
|
||||
name: "TKM Test 33 (yellow)"
|
||||
id: tkm_test_33
|
||||
- platform: gpio
|
||||
pin:
|
||||
number: GPIO12
|
||||
number: GPIO34
|
||||
mode: INPUT_PULLUP
|
||||
name: "TKM Test 12 (orange)"
|
||||
id: tkm_test_12
|
||||
name: "TKM Test 34 (orange)"
|
||||
id: tkm_test_34
|
||||
- platform: gpio
|
||||
pin:
|
||||
number: GPIO32
|
||||
number: GPIO35
|
||||
mode: INPUT_PULLUP
|
||||
name: "TKM Test 32 (green)"
|
||||
id: tkm_test32
|
||||
name: "TKM Test 35 (white)"
|
||||
id: tkm_test_35
|
||||
|
||||
Reference in New Issue
Block a user