Hi,
I have same issue, but my device is 3EM. How to switch ON automatically after certain time?
Would be great to find some workaround.
I managed to find working action by creating local url for normal over power action:
"http://localhost/relay/0?turn=off&timer=3600"
{
"actions": {
"out_on_url": [
{
"index": 0,
"urls": [],
"enabled": false
}
],
"out_off_url": [
{
"index": 0,
"urls": [],
"enabled": false
}
],
"over_power_url": [
{
"index": 0,
"urls": [
"http://localhost/relay/0?turn=off&timer=3600"
],
"enabled": true,
"over_power_url_threshold": 6000
}
]
}
}
The url turns OFF the contactor for timer value and then turns ON
I disabled the "Safety" settings, since it seems to be "permanent" switch OFF.
Would be nice to have better manual for these configuration.