Progress
This commit is contained in:
6
Desk Clamp Design.txt
Normal file
6
Desk Clamp Design.txt
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Things I could do with a desk clamp:
|
||||||
|
- Strain relief for usb cables (3 or more)
|
||||||
|
- Holster for soldering iron
|
||||||
|
- Holsters for two magnifying glasses
|
||||||
|
|
||||||
|
Consider small one (usb cables) on right, larger one (magnifying glasses and maybe soldering iron) on left
|
||||||
@@ -1,12 +1,37 @@
|
|||||||
esphome:
|
esphome:
|
||||||
name: bedroom_tkm1
|
name: bedroom_tkm1
|
||||||
platform: ESP32
|
platform: ESP32
|
||||||
board: esp-wrover-kit
|
board: wemos_d1_mini32 #esp-wrover-kit
|
||||||
on_boot:
|
on_boot:
|
||||||
priority: 900
|
- priority: -100 #900 tried down to 500
|
||||||
then:
|
then:
|
||||||
- lambda: |-
|
- lambda: |-
|
||||||
id(wake_up_reason) = log(esp_sleep_get_ext1_wakeup_status())/log(2);
|
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:
|
wifi:
|
||||||
ssid: "Meneely"
|
ssid: "Meneely"
|
||||||
@@ -41,7 +66,7 @@ mqtt:
|
|||||||
discovery: True
|
discovery: True
|
||||||
username: ha
|
username: ha
|
||||||
password: lorrie
|
password: lorrie
|
||||||
keepalive: 2s
|
# keepalive: 2s
|
||||||
birth_message:
|
birth_message:
|
||||||
topic: bedroom_tkm1/status
|
topic: bedroom_tkm1/status
|
||||||
payload: coming_online_birth
|
payload: coming_online_birth
|
||||||
@@ -56,12 +81,12 @@ mqtt:
|
|||||||
|
|
||||||
deep_sleep:
|
deep_sleep:
|
||||||
run_duration: 20s
|
run_duration: 20s
|
||||||
sleep_duration: 1min #24h
|
sleep_duration: 40s #24h
|
||||||
esp32_ext1_wakeup:
|
esp32_ext1_wakeup:
|
||||||
pins: #[12] #, 14, 27]
|
pins:
|
||||||
- GPIO12
|
- 4 #yellow
|
||||||
- GPIO14
|
- 12 #orange
|
||||||
- GPIO27
|
- 32 #green
|
||||||
mode: ANY_HIGH
|
mode: ANY_HIGH
|
||||||
id: deep_sleep_1
|
id: deep_sleep_1
|
||||||
|
|
||||||
@@ -70,42 +95,50 @@ globals:
|
|||||||
type: int
|
type: int
|
||||||
restore_value: no
|
restore_value: no
|
||||||
initial_value: '0'
|
initial_value: '0'
|
||||||
|
- id: wake_up_reason1
|
||||||
|
type: int
|
||||||
|
restore_value: no
|
||||||
|
initial_value: '0'
|
||||||
sensor:
|
sensor:
|
||||||
- platform: template
|
- platform: template
|
||||||
name: "Remote Control Wake Reason"
|
name: "Remote Control Wake Reason"
|
||||||
accuracy_decimals: 0
|
accuracy_decimals: 0
|
||||||
lambda: |-
|
lambda: |-
|
||||||
return id(wake_up_reason);
|
return id(wake_up_reason);
|
||||||
on_value:
|
- platform: template
|
||||||
then:
|
name: "Remote Control Wake Reason1"
|
||||||
- if:
|
accuracy_decimals: 0
|
||||||
condition:
|
lambda: |-
|
||||||
lambda: 'return id(wake_up_reason) == 12;'
|
return id(wake_up_reason1);
|
||||||
then:
|
# on_value:
|
||||||
- logger.log: "12, Green wire touched"
|
# then:
|
||||||
else:
|
# - if:
|
||||||
- logger.log: "Non-green wire touched"
|
# condition:
|
||||||
|
# lambda: 'return id(wake_up_reason) == 4;'
|
||||||
|
# then:
|
||||||
|
# - logger.log: "4, yellow wire touched"
|
||||||
|
# else:
|
||||||
|
# - logger.log: "Non-yellow wire touched"
|
||||||
|
|
||||||
binary_sensor:
|
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
|
- platform: gpio
|
||||||
pin:
|
pin:
|
||||||
number: GPIO12
|
number: GPIO12
|
||||||
mode: INPUT_PULLUP
|
mode: INPUT_PULLUP
|
||||||
filters:
|
name: "TKM Test 12 (orange)"
|
||||||
- delayed_on: 10ms ### <---- debounce time, was 100ms
|
|
||||||
# - delayed_off: 10s ### <---- delay to capture state change on wake up
|
|
||||||
name: "TKM Test 12 (Green)"
|
|
||||||
id: tkm_test_12
|
id: tkm_test_12
|
||||||
- platform: gpio
|
- platform: gpio
|
||||||
pin:
|
pin:
|
||||||
number: GPIO14
|
number: GPIO32
|
||||||
mode: INPUT_PULLUP
|
mode: INPUT_PULLUP
|
||||||
name: "TKM Test 14 (Yellow)"
|
name: "TKM Test 32 (green)"
|
||||||
id: tkm_test_14
|
id: tkm_test32
|
||||||
- platform: gpio
|
|
||||||
pin:
|
|
||||||
number: GPIO27
|
|
||||||
mode: INPUT_PULLUP
|
|
||||||
name: "TKM Test 27 (Orange)"
|
|
||||||
id: tkm_test27
|
|
||||||
|
|||||||
6
bedroom_tkm1_off/partitions.csv
Normal file
6
bedroom_tkm1_off/partitions.csv
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
nvs, data, nvs, 0x009000, 0x005000,
|
||||||
|
otadata, data, ota, 0x00e000, 0x002000,
|
||||||
|
app0, app, ota_0, 0x010000, 0x1C0000,
|
||||||
|
app1, app, ota_1, 0x1D0000, 0x1C0000,
|
||||||
|
eeprom, data, 0x99, 0x390000, 0x001000,
|
||||||
|
spiffs, data, spiffs, 0x391000, 0x00F000
|
||||||
|
4
esp32_chip_list.txt
Normal file
4
esp32_chip_list.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Name in ESPHome IP assigned Board Chip ID Description
|
||||||
|
bigblue1 192.168.87.31 ESP32/esp-wrover-kit ESP32D0WDQ5 (revision 1) Battery shield, 18650
|
||||||
|
bedroom_tkm1 192.168.87.36 ESP32/wemos_d1_mini32 ESP32D0WDQ6 (revision 1) D1 mini, 4xAmazon 2021-01-20. Doesn't give pin ID used to wake from deep sleep
|
||||||
|
esp32_cam1 192.168.87.17 ESP32/esp32cam ESP32-CAM, 2xAmazon 2020-12-17
|
||||||
@@ -1 +1 @@
|
|||||||
esphome bedroom_tkm1.yaml run --upload-port /dev/ttyS4
|
esphome bedroom_tkm1.yaml run --upload-port /dev/ttyS9
|
||||||
|
|||||||
Reference in New Issue
Block a user