Hello,
i’m a beginner with homeassistant, in fact i had the opportunity to try home assistant just as a lab.
Actually, I’m planning a new house and, specifically, I’m installing a traditional irrigation system (4 electrovalves and a standalone controller by Orbit).
In my mind, I would like to integrate the irrigation system with Home Assistant. In this use case, I think to control the irrigation system based on some rules. For example, I can open the water only if is not raining since a couple of days, based even on season, etc etc…
So, maybe i will not need the Orbit anymore. I think I can control directly the electrovalves. Is it right ?
Does anyone have some experiences or suggestions ?
I have replaced my Orbit with HA completely using a Makerfocus D1 Mini and a JBtek 4 Channel DC 5V Relay Module.
My personal weather station provides precipitation data (via WUnderground) which allows me to time the drip system - as you can see there hasn’t been any rain in California for a while so it runs every 3 days, 20 minutes on each circuit:
It’s on my to do list but my plan is a sonoff 4 relay board running tasmota and miflora moisture sensors connected using esphomeyaml loaded ESP2866 modules.
Yes, for the moment I’m trying to set up automations that run constantly and check the soil moisture, and then enable the smart switch with a pump.
For some reason my automation works only one, and then I need to restart my HA.
Unfortunately as indicated this setup was done in OpenHAB not in my HASS instance. Maybe you can share your current automation so we can try to help you.
Sure, I’ve posted a few requests to share some existing automations, howevery no one responded sso far.
I’m not sure if I’m doing this correctly: I’ve created 2 automations, first checks the Mi Flora moisture status, and in case if its bellow 30 turns on xiaomi plug for 1 minute and then turns off. This automation seems to be working, however the second one - to repeat this every, lets say 30 min /1 hr, is not.
After the autoamtion had run one time its not repeating unless I restart HA.
I know that in 2 automation I need to set correct trigger, however I dont knw how to do that in the code of via the interface.
The next level would be to check the weather forecast and not turn on the automation if the rain forecast is higher than 70%.
Hi, this is a bit unrelated, however, I was thinking about light intensity script that would measure the amount of light that was exposed to. E.g. in case it was a rainy day and there was not “a lot” of light coming thru the windows turn on the lamp for X hours.
have someone did something similar?
Exactly the same way you set up the irrigation automation, but using the LUX sensor instead of the moisture sensor, and your lamp switch instead of the valve switch.
EDIT, You might want to also add a condition of the sun being up… Unless you want your grow lights on all night.
condition: and # 'when light' condition: before sunset and after sunrise - equivalent to a state condition on `sun.sun` of `above_horizon`
conditions:
- condition: sun
before: sunset
- condition: sun
after: sunrise