Hallo zusammen,
ich habe mir nun ein Sonoff Dual Ventil zugelegt und auch erfolgreich in HA eingebunden. Ich habe auch die Smart Irrigation Integration installiert und konfiguriert. Als Wetterdienst verwende ich darin OpenWeatherMap mit einem entsprechenden API 3.0 Key. Aber heute hat es den ganzen Tag geregnet und der Bucket wurde dennoch erhöht. Wenn ich mir die Wetterdaten innerhalb der Zone anzeigen lasse, steht bei Niederschlag immer 0 mm.
Kann es sein, das kein Niederschlag durch die Integration erkannt/abgerufen wird?
Hallo zusammen,
ist ein Bug. Hier das Issue welches ich erstellt habe:
offen 09:39PM - 26 Jul 26 UTC
bug
### Did you read the docs?
- [x] I read the docs and my question is not answere… d there.
### What happened?
Hi everyone,
I'm using Google translate, because I'm from germany and my english is not very well :)
I’ve just acquired a Sonoff Dual valve and successfully integrated it into HA. I’ve also installed and configured the Smart Irrigation integration. I’m using OpenWeatherMap as the weather service, with a valid API 3.0 key. However, it rained all day today, yet the bucket level still increased. When I view the weather data for the zone, the precipitation always shows as 0 mm:
<img width="1102" height="157" alt="Image" src="https://github.com/user-attachments/assets/fae4dded-b969-489e-8756-35cba6d3a41f" />
Could it be that the integration isn't detecting or retrieving any precipitation data?
The OpenWeatherMap integration itself reports rain:
<img width="389" height="227" alt="Image" src="https://github.com/user-attachments/assets/5e730c11-b6ff-47dc-af93-3a505c215084" />
I can't download the diagnoses file like reported in the issue 782.
To prevent watering tomorrow (since it rained continuously all day), I’ve reset the zone buckets.
If you need further information, feel free to write me.
### How to reproduce
Open the zone and show the weather data.
### Relevant log output
```shell
v2026.7.0
```
### Which version are you running?
v2026.7.0
### Diagnostics file
- [x] I have attached a diagnostics file
### Additional information
Here is my automation (if it helps):
`
alias: Neue Automation
description: ""
triggers:
- event_type: smart_irrigation_start_irrigation_all_zones
trigger: event
conditions:
- condition: or
conditions:
- condition: numeric_state
entity_id: sensor.smart_irrigation_hauptrasenflache_vorn
above: 0
- condition: numeric_state
entity_id: sensor.smart_irrigation_nebenrasenflache_vorn
above: 0
actions:
- action: switch.turn_on
metadata: {}
target:
entity_id: switch.bewasserungsventil_rasen_vorn_1
data: {}
- delay:
seconds: "{{ states('sensor.smart_irrigation_hauptrasenflache_vorn') | int(0) }}"
- action: switch.turn_off
metadata: {}
target:
entity_id: switch.bewasserungsventil_rasen_vorn_1
data: {}
- action: switch.turn_on
metadata: {}
target:
entity_id: switch.bewasserungsventil_rasen_vorn_2
data: {}
- delay:
seconds: "{{ states('sensor.smart_irrigation_nebenrasenflache_vorn') | int(0) }}"
- action: switch.turn_off
metadata: {}
target:
entity_id: switch.bewasserungsventil_rasen_vorn_2
data: {}
- action: button.press
metadata: {}
target:
entity_id:
- button.smart_irrigation_hauptrasenflache_vorn_reset_bucket
- button.smart_irrigation_nebenrasenflache_vorn_reset_bucket
data: {}
mode: single
`
Unten ist ein Workaround genannt.