Hello,
Is there a way to have a relay of the Gerbo GX switch if the power becomes too high? I would like to have part of my installation switch off if the power measured by an ET112 becomes too high.
Thank you
Hello,
Is there a way to have a relay of the Gerbo GX switch if the power becomes too high? I would like to have part of my installation switch off if the power measured by an ET112 becomes too high.
Thank you
Probably with node red. Got no way to make a flow for you though i do not use the ETs
Ok thank you i look in to that.
I think i do someting wronge. below some screen schots cane any one see what is wrong?
the relay shoot switch if the current going higher than 5A
Try changing msg.1 and msg.5 to number 1 and number 5 using the dropdowns that now show msg.
let input = msg.payload;
if (input > 5) {
msg.payload = 1;
} else {
msg.payload = 0;
}
return msg;
just add function and copy this code
I would add a hysteresis or timer to that logic, unless you want to really exercise the relay..
Thank you all with the imput you gave it’s works. And a hysteresis is added.