You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.easee/README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,9 @@ The following configuration parameters are available for the binding/bridge:
28
28
| username | yes | The username to login at Easee Cloud service. This should be an e-mail address or phone number. |
29
29
| passord | yes | Your password to login at Easee Cloud service. |
30
30
| siteId | yes | The ID of the site containing the wallbox(es) and circuit(s) that should be integrated into openHAB. The ID of your site can be found via the sites overview (<https://easee.cloud/sites>). You just need to click one of the sites listed there, the id will be part of the URL which is then opened. It will be a number with typically 6 digits. |
31
-
| dataPollingInterval | no | Interval (seconds) in which live data values are retrieved from the Easee Cloud API. (default = 120) |
31
+
| dataPollingInterval | no | Interval (seconds) in which live data values are retrieved from the Easee Cloud API. (default = 60) |
32
+
| webRequestInitialDelay | no | Initial time (seconds) to wait before first request is sent to the Easee Cloud API. (default = 10) |
33
+
| webRequestInterval | no | Interval (seconds) between two subsequent requests to be sent to the Easee Cloud API. (default = 2) |
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/EaseeBindingConstants.java
-2
Original file line number
Diff line number
Diff line change
@@ -122,8 +122,6 @@ public class EaseeBindingConstants {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/config/EaseeConfiguration.java
+21-2
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,9 @@ public class EaseeConfiguration {
28
28
29
29
privateIntegerasyncTimeout = 120;
30
30
privateIntegersyncTimeout = 120;
31
-
privateIntegerdataPollingInterval = 120;
31
+
privateIntegerdataPollingInterval = 60;
32
+
privateIntegerwebRequestInitialDelay = 10;
33
+
privateIntegerwebRequestInterval = 2;
32
34
33
35
publicStringgetUsername() {
34
36
returnusername;
@@ -78,13 +80,30 @@ public void setDataPollingInterval(Integer dataPollingInterval) {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/connector/WebInterface.java
0 commit comments