this post was submitted on 13 Jun 2023
3 points (80.0% liked)

Home Automation

2925 readers
1 users here now

Discussion about general home automation ideas and projects, home automation protocols like Z-wave, Zigbee, Matter, etc, and home automation software and hubs like HomeSeer, Home Assistant, OpenHAB, Homey.

founded 1 year ago
MODERATORS
 

I am in the process of building this in my system. I want to add a couple of extra features. such as minimum run time, the ability to run a few minutes each hour over night (for skimming) and some other bits an pieces.

all 14 comments
sorted by: hot top controversial new old
[–] Bluetreefrog 4 points 1 year ago (3 children)

I did something like this. I buy my electricity at wholesale prices, and the supplier has an API with price predictions, so I used node-red to compare insolation forecasts, and price forecasts to work out what time-blocks to run the pool pump (when solar high, or price low, or cheapest forecast times to achieve a minimum number of hours per day).

Not quite the same as home automation, but there's a home-made renewable energy system community too:

https://lemmy.world/c/hmres

[email protected]

Home Made Renewable Energy Systems

[–] [email protected] 1 points 1 year ago

undefined> [email protected]

that is cool. I have subbed to HMRES, but haven't seen too much content in my feed yet. will ahve a browse.

[–] LiquidSunset 0 points 1 year ago (3 children)

Are you using Amber Electric? Would you be willing to share your Node-Red flows? I’m trying to come up with some automation for the car charger based on price predictions but it’s been doing my head in…

[–] Bluetreefrog 2 points 1 year ago (1 children)

Do you have a solar system?

[–] LiquidSunset 1 points 1 year ago (1 children)

Not yet. The plan is to get solar and battery but the installers I’ve spoken to have been somewhat unhelpful. For now we’re just on the wholesale pricing.

[–] [email protected] 2 points 1 year ago (1 children)

Lemmy.world seems to be groaning under the load of new users. Did you get my DM with the first flow? It never confirmed that it sent.

[–] LiquidSunset 1 points 1 year ago

No DM yet! In fact I can only see this comment in my Inbox, not in the main discussion thread. Teething trouble!

[–] Bluetreefrog 2 points 1 year ago

Sure, I’ll share them today.

[–] [email protected] 2 points 1 year ago (1 children)

I gotta say... Your documentation is really good. You definitely have more experience with node red than myself so I am not sure how one would improve upon your work so far. Plus most of my improvements would probably be a little advanced for the aim of your project as I tend to go down a rabbit hole whenever I automate something lol.

Mostly, my two cents are for if you want to go further towards a smart pump and getting more data into home assistant:

  • Look for a way to track the flow of water through the pump to watch for signs of blockage or pump failure.
  • Look at what options would you have for water quality sampling/intervention (if you do any maintenance for that).
[–] [email protected] 2 points 1 year ago (1 children)

i need to say, this is not mine! i actually posted it as i didnt want to lose the page :-/

For pump flow, i would use power draw as a proxy for flow. if the power is really low, it equates to a low flow. I already have them on Athom smart plugs, which have power monitoring. I actually use this to auto-prime my bore pump, which will turn on-off as needed to get the flow through. I'll post it at some point.

I have at atlas scientific wifi pool monitor which does auto-sampling but there is a bunch of maths and a lack of motivation/time to implement! one day maybe!

[–] [email protected] 2 points 1 year ago (1 children)

Haha! Nothing wrong with keeping track of some inspiration.

Sounds like you already have the ideal setup for that part then. You could set an automation that loops with a timed delay to handle the night time pump circulation.

Would you need the pump to observe the same behavior with longer run times during the day? If so you can set it to check the time or sunrise/sunset and run the corresponding loop you need. That might solve the minimum runtime issue as you would be achieving your goal runtime by dividing it across the day.

[–] [email protected] 1 points 1 year ago

i think i want to try and run between the sunny hours, only off of solar. but at some point it will be obvious i wont get my minimum run time in, so i will need to run it anyway.

Shouldn't be too hard to track the sun in the sky, and start the solar-powered run when it is above an angle, and move to a maximum time limited schedule when it is not possible to actually generate enough power to run the pump.

  1. track the time that the pump is running, and reset it to zero at the start of the day
  2. when the solar allows for it, run the pump
  3. when solar is not longer able to power the pump (ie max potential power is less than trigger), move to a timer based schedule
  4. if the pump run time is >required, stop the pump (and dont restart it)