# Water usage flow

**URL:** https://community.homey.app/t/water-usage-flow/152180
**Category:** Flows
**Created:** [March 8, 2026, 3:23am UTC](https://community.homey.app/t/water-usage-flow/152180 "2026-03-08T03:23:36Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Peter\_Br](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/peter_br/32/12476_2.png) [@Peter\_Br](https://community.homey.app/u/Peter_Br)
#### Post date: [March 8, 2026, 3:23am UTC](https://community.homey.app/t/water-usage-flow/152180/1 "2026-03-08T03:23:36Z")

</div>

I want to receive a notification if water is used continuously for an hour. In that case, a tap has been forgotten to be turned off. Therefore, the consumption must be constant.

If there are periods of less than an hour of consumption, no notification should be sent. In that case, someone is in the shower or the washing machine is running. How can I create a similar flow? I use a HomeWizard water meter.

---

<div class="post-metadata">

### Author: ![FKey](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/fkey/32/14793_2.png) [@FKey](https://community.homey.app/u/FKey)
#### Post date: [March 8, 2026, 8:18am UTC](https://community.homey.app/t/water-usage-flow/152180/2 "2026-03-08T08:18:55Z")

</div>

My way would be:

Use “[insight trends](https://homey.app/en-us/app/com.spkes.insightTrendsReloaded/Insight-Trends-Reloaded/)” app to monitor the water meter and use the “median” over a longer period (30min) as a baseline. That will remove outlyers.

A second flow will trigger every hour and check if the median is \>zero (or another minimum)

depending on your hone situation this will work or not. If you have very regular on/of water usage this will not be sufficient. You might need to add a check if there is usage below the median

---

<div class="post-metadata">

### Author: ![FlorisVandeVijver](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/florisvandevijver/32/60097_2.png) [@FlorisVandeVijver](https://community.homey.app/u/FlorisVandeVijver)
#### Post date: [March 8, 2026, 9:11am UTC](https://community.homey.app/t/water-usage-flow/152180/3 "2026-03-08T09:11:26Z")

</div>

you could also check every 5 minutes if there’s water being consumed.

if yes, increment a numerical variable (e.g. water\_periods);  
if no, reset the variable water\_periods

if water\_periods \>= 12, create notification

---

<div class="post-metadata">

### Author: ![DirkG](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/dirkg/32/118897_2.png) [@DirkG](https://community.homey.app/u/DirkG)
#### Post date: [March 8, 2026, 10:12am UTC](https://community.homey.app/t/water-usage-flow/152180/4 "2026-03-08T10:12:23Z")

</div>

You didn’t mentioned, what Homey you are using. If you’re using a Homey Pro/mini or SHS, the following flows could be a solution.

**When…**  
– The waterflow changed  
**And…**  
– Waterflow is greater than 0  
**Then…**  
– Start a timer with 60 minutes

**When…**  
– Timer is finished  
**And…**  
– Waterflow is greater than 0  
**Then…**  
– Push notification

**When…**  
– The waterflow changed  
**And…**  
– Waterflow is equal with 0  
– Timer runs  
**Then…**  
– Stop timer

As a timer app, you can use the [Chronograph](https://homey.app/a/nl.fellownet.chronograph/) app, the [FlowBits](https://homey.app/a/com.basmilius.flowbits/) app, or other similar apps.

---

<div class="post-metadata">

### Author: ![Peter\_Kawa](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/peter_kawa/32/173848_2.png) [@Peter\_Kawa](https://community.homey.app/u/Peter_Kawa)
#### Post date: [March 8, 2026, 11:13am UTC](https://community.homey.app/t/water-usage-flow/152180/5 "2026-03-08T11:13:56Z")

</div>

Isn’t a “waterflow becomes greater than Y for Z minutes” card available?

For example this would detect a continous water usage during an hour, even if one uses the shower or washing machine in the meantime:

 ![1154](https://us1.discourse-cdn.com/flex025/uploads/athom/original/3X/d/c/dc086ee5eea6fec005105aed8b5078c360a7fcb3.jpeg)

---

<div class="post-metadata">

### Author: ![Peter\_Br](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/peter_br/32/12476_2.png) [@Peter\_Br](https://community.homey.app/u/Peter_Br)
#### Post date: [March 8, 2026, 1:13pm UTC](https://community.homey.app/t/water-usage-flow/152180/6 "2026-03-08T13:13:17Z")

</div>

@Peter_Kawa yes, that card is available and the easiest option.

Thanks a lot.
