Hello everyone,
I also bought Yagusmart switches and was facing the 2 minute issue. Then I went through the handler for multi-swith and found two things -
On line 238: it is checked if the manufacturer is Orvibo.
private Boolean isOrvibo() {
device.getDataValue("manufacturer") == "Orvibo"
}
And on line 217, in configure method, it is checked every 2 minutes, if the manufacturer is Orvibo, then its okay, or do a Refresh
.
So, anyone facing the issue, can simply return true from isOrvibo method to get rid of it. I am pasting my handler here for other’s usage.