iobroker.acinfinity 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/io-package.json +2 -2
- package/lib/constants.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ The developer accepts no responsibility for any harm or issues arising from the
|
|
|
37
37
|
## Setup
|
|
38
38
|
|
|
39
39
|
1. Enter your AC Infinity email and password
|
|
40
|
-
2. Set the polling interval (minimum
|
|
40
|
+
2. Set the polling interval (minimum 10 seconds)
|
|
41
41
|
3. Click Save & Close
|
|
42
42
|
|
|
43
43
|
## Usage
|
|
@@ -58,7 +58,7 @@ After installation, the adapter will create device objects for each of your AC I
|
|
|
58
58
|
|
|
59
59
|
## Changelog
|
|
60
60
|
|
|
61
|
-
### 0.4.
|
|
61
|
+
### 0.4.3 (2025-03-28)
|
|
62
62
|
* Bug fixes and improvements
|
|
63
63
|
|
|
64
64
|
### 0.3.1 (2025-03-27)
|
package/io-package.json
CHANGED
package/lib/constants.js
CHANGED
|
@@ -17,7 +17,7 @@ const API_ENDPOINTS = {
|
|
|
17
17
|
|
|
18
18
|
// Polling intervals
|
|
19
19
|
const DEFAULT_POLLING_INTERVAL = 30; // seconds
|
|
20
|
-
const MINIMUM_POLLING_INTERVAL =
|
|
20
|
+
const MINIMUM_POLLING_INTERVAL = 10; // seconds
|
|
21
21
|
|
|
22
22
|
// Controller property keys
|
|
23
23
|
const CONTROLLER_PROPERTY_KEY = {
|