I also have some rules active which are refreshing the Smart sensors. Could that possibly cause this issue?
Since yesterday the Gardena app on my Smartphone shows a message like "
Your account has been blocked for too many concurrent requests.
Wait a moment until your account is unlocked again."
But that “moment” is the whole day since yesterday.
For testing i’ve deactivated my rules and hope, that it’ll help a bit.
Hope someone has a idea.
Thanks in advance for your help.
I get the same message all the time.
Changed the refresh rate for the binding from 60 seconds to 30 minutes, now it’s a bit better but sometimes I still get blocked. I do a force refresh for the sensors once an hour.
Strangely the states are still updated immediately even with a 30 Minutes refresh, so I will try to set it to 1 hour now, maybe this helps.
Edit: The state of the valves does not refresh when the timer stops, see solution below.
In the binding I changed the refresh rate from 60 to 3600, that prevents being locked out by gardena. I refresh my sensors manually once an hour, since Gardena does the refresh less frequent. To still get the correct state from the valves when the irrigation stops I added the following rule:
rule "irrigation_valve_1_off"
when
Item irrigation_valve_1 changed
then
var Timer timer = null
if (irrigation_valve_1.state == 0) {
}
else {
timer = createTimer(now.plusMinutes(Integer.parseInt(irrigation_valve_1.state.toString)), [
irrigation_valve_1.sendCommand(0)
timer = null
])
}
end
I need the if - Else since I also do some manual persistence in this rule.
The reason for the parseInt is a NULL error I always get when I try to read the state in any other way.