In this video I use a Sonoff SV and a simple 110v coil relay to provide a electric dryer announcement to the house that the dryer cycle is complete. NO CVT’s. No ESPHome. I also show you an external antenna on a ESP device (Sonoff SV) and I recycle a case to mount it all.
Episode: 019
Video related links:
110v coil relay: https://www.aliexpress.com/item/32649310438.html?spm=a2g0s.9042311.0.0.40694c4db8oCxz
WIFI Antenna Addon: https://www.aliexpress.com/item/4001057394662.html?spm=a2g0s.9042311.0.0.40694c4db8oCxz
Sonoff SV: https://www.aliexpress.com/item/4000898615200.html?spm=a2g0s.9042311.0.0.40694c4db8oCxz
Contact Links:
What are we Fixing Today Homepage / Website:
https://www.WhatAreWeFixing.Today/
Channel Link URL: (WhatAreWeFixingToday)
https://bit.ly/WhatAreWeFixingTodaysYT
What are we Fixing Today Facebook page (Sir GoodEnough):
https://bit.ly/WhatAreWeFixingTodaybFB
What are we Fixing Today Twitter Account (Sir GoodEnough):
https://bit.ly/WhatAreWeFixingTodayTW
Discord Account: (Sir_Goodenough#9683)
https://discord.gg/Uhmhu3B
Please help support the channel:
Buy me Coffee: https://www.buymeacoffee.com/SirGoodenough
PayPal one-off donation link: https://www.paypal.me/SirGoodenough
Cash App $CASHTAG: https://cash.me/$SirGoodenough
Venmo cash link: https://venmo.com/SirGoodenough
If you would like to donate anything to this channel, please use this address:
C/O: Sirius GoodEnough
322 Buena Vista Ave.
Department: DYT
Waukesha, Wisconsin, 53188-3602
Link to this video on YouTube:
https://youtu.be/MwlHkkDQHqc
HelperText and Templates Related to the video:
WARNING: I have all my topics flipped for personal reasons (CDO).
Please make sure your topic MATCHES the topic you see in
YOUR Tasmota WebUI console!
Tasmota configuration:
(Configure WIFI)→ (Configure MQTT)→ Set-up your WIFI and MQTT login information
(Console)→
Backlog Module 3; MqttLog 2; SysLog 2; WebLog 2; SerialLog 0; ; PowerRetain 1; SensorRetain 1; SetOption8 1
(Configure Module)→ set GPIO4 as Relay2(22) set GPIO5 as Switch2(10) set GPIO14 as SI7021(2) — (This is my temp/humid sensor, optional)
(Console)→
Backlog Hostname Dryer3; MqttClient Dryer3; Topic Dryer3; FriendlyName1 Dryer3
(Console)→
Backlog WebButton1 Not Connected; WebButton2 Dryer On
(Console)→
Backlog FullTopic %topic%/%prefix%/
— (This is flipping the topic, optional)
WARNING: I have all my topics flipped for personal reasons (CDO).
Please make sure your topic MATCHES the topic you see in
YOUR Tasmota WebUI console!
binary_sensor:
#####################################################
# Dryer Complete Signal #
#####################################################
- platform: mqtt
name: "Dryer"
device_class: power
state_topic: Dryer3/stat/POWER2
payload_on: 'ON'
payload_off: 'OFF'
availability_topic: Dryer3/tele/LWT
payload_available: Online
payload_not_available: Offline
payload_not_available: "Offline"
Automations:
####################################################
# Dryer Signal #
####################################################
- id: 92312f77-02af-4a49-a728-978ff6b08229
alias: Dryer Alert
initial_state: 'on'
trigger:
- platform: state
entity_id: binary_sensor.dryer
from: 'on'
to: 'off'
for:
seconds: 30
action:
- service: tts.google_translate_say
entity_id: group.intercom_stack
data_template:
message: The clothes are dry.
Sensor:
#####################################################
# Dryer Temp / Humid #
#####################################################
- platform: mqtt
name: "Laundry Room Temperature"
state_topic: "Dryer3/tele/SENSOR"
device_class: temperature
unit_of_measurement: '°F'
value_template: "{{value_json['SI7021'].Temperature }}"
availability_topic: "Dryer3/tele/LWT"
payload_available: "Online"
payload_not_available: "Offline"
- platform: mqtt
name: "Laundry Room Humidity"
state_topic: "Dryer3/tele/SENSOR"
device_class: humidity
unit_of_measurement: '%'
value_template: "{{value_json['SI7021'].Humidity }}"
availability_topic: "Dryer3/tele/LWT"
payload_available: "Online"