Hmm, interesting idea. I will think about it and discuss it with the EcoNet team.
Unless it is a ball valve, I canât see how it could be reliable.
Dan did you ever find this out? Or has anyone else?
/**
- Turn Off the Water
- Author Jamie Bourassa
*/
definition(
name: âTurn Off the Waterâ,
namespace: âanywayâ,
author: âJamie Bourassaâ,
description: âTurns a valve or switch to the off / closed position.â,
category: âSafety & Securityâ,
iconUrl: âhttps://cdn.device-icons.smartthings.com/valves/water/open.pngâ,
iconX2Url: âhttps://cdn.device-icons.smartthings.com/valves/water/open@2x.pngâ
)
preferences {
section(âWhen water is sensedâŚâ) {
input âsensorâ, âcapability.waterSensorâ, title: âWhere?â, multiple: true
}
section(âTurn offâŚâ) {
input âpumpâ, âcapability.switchâ, title: âWhich?â, multiple: true
}
}
def installed() {
subscribe(sensor, âwater.dryâ, waterHandler)
subscribe(sensor, âwater.wetâ, waterHandler)
}
def updated() {
unsubscribe()
subscribe(sensor, âwater.dryâ, waterHandler)
subscribe(sensor, âwater.wetâ, waterHandler)
}
def waterHandler(evt) {
log.debug "Sensor says ${evt.value}"
if (evt.value == âwetâ) {
if (state.delay != true) {
pump.off()
}
}
}
def checkWet(evt) {
def latestValue = sensor.latestValue(âwaterâ)
}
The Iris one can not, the FortrezZ does.
Thanks for this water shutoff app. I will install and test.
The lever valve controller is reliable and I think it is possible to make a valve controller reliable for a standard turn valve. The tricky part would be the controller knowing difference between completely open/close or just a tight valve. Also, you donât want so much torque that you could damage the valve. This is all possible though as we use a similar method with our EV100/200 vents in running a calibration stroke that open/closes and gets a profile of the mechanical system. (current/power feedback from the motor) With this method it would even be possible to open the valve in percentages, just like a dimmer switch, or just like our vent.
A smart Valve or valve controller is my next planned purchase. The fortrezz is expensive plus the cost of installation. The leaksmart is nice because of the price point. The econet is exciting because of the price point and no installation cost but lacks both battery back up and also no consumption monitoring.
All that said - I think Iâm going to try the econet. I would go with leaksmart if consumption monitoring worked with ST.
That sounds pretty cool. Iâd be interested. Itâs not just that I donât want the pain of replacing my valves, but also that I like the freedom to easily take the device with me when I move years down the road. A friend of mine who sells houses for a living recently mentioned that he recommends clients remove DIY home automation switches and stuff before putting their house up for sale. Having to figure out how to use or remove a bunch of home automation devices adds unwanted complexity to most buyers. I like EcoNetâs easy add/remove approach.
For the EBV105, how long is the power adapter cord? I would consider it for use as a backup for when I forget to close the BBQ grill natural gas valve at night (I realize this is unintended and outdoor use
The EBV105 has a cable that is 4â long. It connects to the adapter cable that is 4.5â long. Together, this gives you a length of 8.5â. A custom cable could extend this length if required.
Just install a ball valve after the gate valve.
Ordered the econet last week. Shipping today.
Please report back on it @fuzzlager
In my experience, standard turn valves âfreezeâ over time requiring greater torque. Ball valves suffer the same issue but to a much less extent. One way to reduce this issue is to periodically test the valves.
This is interesting. We have created an app. for SmartThings that closes the value and sends alert notification when a water leak is detected from standard water sensors. Perhaps we should add a maintenance option in this app. that closes and then opens the value once a month as this would prevent or reduce stiff or stuck valves due to lack of use. What do you think?
Yes. It would also need to be able to indicate if the test fails.
And of course it must have an easy schedule option so users can pick the most appropriate time for their schedule.
Iâm thinking many similar devices need to have, capabilty.selfDignosticTest
(name subject to change) such that it can be scheduled or called by any SmartApp.
Any update @fuzzlager their website says not shipping until 7/6/15 but you said yourâs shipped 9 days ago?
@EcoNetBlake Is there a special device type for your product?
We @EcoNetBlake had a small quantity available that ran out quickly. We are waiting for a new production batch of EBV105 water shutoff controllers that will begin shipping next week.