I need help for an emergency shutdown #127
Replies: 5 comments 1 reply
-
hmm, is it so difficult or did just nowbody read my question? |
Beta Was this translation helpful? Give feedback.
-
hello @humtauscher,
sorry i didn’t reply
this is not a feature I plan to develop because you can easily use lambda
in esphome yaml that triggers on state change of a home assistant sensor
this looks like a basic esphome feature which is not in the scope of this
firmware.
Envoyé avec Gmail Mobile
Le mar. 16 juil. 2024 à 16:26, umtauscher ***@***.***> a
écrit :
… hmm, is it so difficult or did just nowbody read my question?
—
Reply to this email directly, view it on GitHub
<#127 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAYTHBFIYGUXBYHHMP4ZIQ3ZMUUSRAVCNFSM6AAAAABKHS5OS2VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTAMBWGM2DCMY>
.
You are receiving this because you are subscribed to this thread.Message
ID: <echavet/MitsubishiCN105ESPHome/repo-discussions/127/comments/10063413
@github.com>
|
Beta Was this translation helpful? Give feedback.
-
thanks for answering. I just wanted to know, if there is any way the esp could shutdown the system by itsself, when it detects the drainage is blocket. The sensor works perfectly, I just wanted to make the shutdown autonomous. |
Beta Was this translation helpful? Give feedback.
-
You probably aren't getting full answers here because the feature you are looking for is a generic ESPHome feature, not something unique to this firmware. Using ESPHome functions you can do an amazing number of different things, and bringing it up in an ESPHome forum would probably get you more answers. To point you in the right direction, you want to set something up using Actions. https://esphome.io/automations/actions#triggers I have no idea if this example will work, but from a glance at the documentation it is at least headed in the right direction and should give you some things to experiment with. This uses the on_state automation trigger of your binary sensor (https://esphome.io/components/binary_sensor/#binary-sensor-on-state) to trigger the climate.control action from the Climate integration (https://esphome.io/components/climate/#climate-control-action). The indentation may be a bit off here, and the on_state control may be inverted (IE this might turn the heatpump off when your sensor is NOT triggered), but hopefully it gets you going. binary_sensor:
- platform: gpio
name: "Kondenswasser"
pin: GPIO16
filters:
- invert:
on_state:
then:
- climate.control:
id: hp
mode: OFF |
Beta Was this translation helpful? Give feedback.
-
Thank you very much, I will try that and report back. |
Beta Was this translation helpful? Give feedback.
-
Hi,
since I am a total ESPHome noob, I wanted to ask for some help with enhancing the electronics.
Due to a flood that was caused by a blocked condens water pipe, I would like to install a safety feature that shuts down the heatpump when that happens again.
I found a neat little optical sensor that I can screw into the tank. https://www.eptsensor.com/level-sensor/single-point-level-sensor/m12-thread-arduino-water-level-sensor.html
I put this into the config file:
binary_sensor:
name: "Kondenswasser"
pin: GPIO16
filters:
and it works well, but I have no idea how to switch off the heatpump when the sensor gets aktive. Naturally I can put an automation into homeassistant that does that, but I rather want the heatpunp to do this on itsself.
I would apreciate any help.
Thanks
Wilhelm
Beta Was this translation helpful? Give feedback.
All reactions