iobroker.poolcontrol 1.2.0 → 1.2.1
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 +285 -292
- package/admin/i18n/de/translations.json +158 -4
- package/admin/i18n/en/translations.json +161 -3
- package/admin/i18n/es/translations.json +158 -4
- package/admin/i18n/fr/translations.json +158 -4
- package/admin/i18n/it/translations.json +158 -4
- package/admin/i18n/nl/translations.json +158 -4
- package/admin/i18n/pl/translations.json +158 -4
- package/admin/i18n/pt/translations.json +158 -4
- package/admin/i18n/ru/translations.json +158 -4
- package/admin/i18n/uk/translations.json +158 -4
- package/admin/i18n/zh-cn/translations.json +158 -4
- package/admin/jsonConfig.json +180 -602
- package/io-package.json +107 -100
- package/lib/helpers/actuatorsHelper.js +6 -8
- package/lib/helpers/aiChemistryHelpHelper.js +7 -7
- package/lib/helpers/aiForecastHelper.js +21 -21
- package/lib/helpers/aiHelper.js +53 -63
- package/lib/helpers/consumptionHelper.js +23 -25
- package/lib/helpers/controlHelper.js +24 -24
- package/lib/helpers/controlHelper2.js +17 -17
- package/lib/helpers/debugLogHelper.js +12 -14
- package/lib/helpers/frostHelper.js +6 -6
- package/lib/helpers/heatHelper.js +14 -14
- package/lib/helpers/infoHelper.js +2 -2
- package/lib/helpers/migrationHelper.js +16 -16
- package/lib/helpers/photovoltaicHelper.js +28 -28
- package/lib/helpers/pumpHelper.js +16 -18
- package/lib/helpers/pumpHelper2.js +8 -10
- package/lib/helpers/pumpHelper3.js +9 -9
- package/lib/helpers/pumpHelper4.js +9 -9
- package/lib/helpers/pumpSpeedHelper.js +6 -6
- package/lib/helpers/runtimeHelper.js +14 -14
- package/lib/helpers/solarHelper.js +9 -9
- package/lib/helpers/speechHelper.js +13 -15
- package/lib/helpers/speechTextHelper.js +13 -13
- package/lib/helpers/statisticsHelper.js +9 -9
- package/lib/helpers/statisticsHelperMonth.js +15 -15
- package/lib/helpers/statisticsHelperWeek.js +11 -11
- package/lib/helpers/statusHelper.js +9 -9
- package/lib/helpers/temperatureHelper.js +9 -11
- package/lib/helpers/timeHelper.js +7 -9
- package/lib/stateDefinitions/actuatorsStates.js +19 -19
- package/lib/stateDefinitions/aiChemistryHelpStates.js +59 -28
- package/lib/stateDefinitions/aiStates.js +119 -31
- package/lib/stateDefinitions/consumptionStates.js +20 -14
- package/lib/stateDefinitions/controlStates.js +90 -37
- package/lib/stateDefinitions/debugLogStates.js +28 -13
- package/lib/stateDefinitions/generalStates.js +4 -4
- package/lib/stateDefinitions/heatStates.js +21 -21
- package/lib/stateDefinitions/infoStates.js +11 -5
- package/lib/stateDefinitions/photovoltaicStates.js +52 -24
- package/lib/stateDefinitions/pumpSpeedStates.js +11 -11
- package/lib/stateDefinitions/pumpStates.js +24 -15
- package/lib/stateDefinitions/pumpStates2.js +22 -10
- package/lib/stateDefinitions/pumpStates3.js +63 -24
- package/lib/stateDefinitions/pumpStates4.js +62 -32
- package/lib/stateDefinitions/runtimeStates.js +10 -10
- package/lib/stateDefinitions/solarStates.js +9 -9
- package/lib/stateDefinitions/speechStates.js +24 -21
- package/lib/stateDefinitions/statisticsStates.js +107 -29
- package/lib/stateDefinitions/statusStates.js +14 -12
- package/lib/stateDefinitions/temperatureStates.js +18 -12
- package/lib/stateDefinitions/timeStates.js +5 -5
- package/main.js +38 -0
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -9,322 +9,322 @@
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Description
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
The adapter ioBroker.poolcontrol is used for controlling and monitoring pool systems.
|
|
15
|
+
It enables automation of pump, temperature, and solar control as well as energy consumption analysis.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Features
|
|
20
20
|
|
|
21
|
-
- **
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
21
|
+
- **Pump Control**
|
|
22
|
+
- Operating modes: Automatic, Automatic (PV), Manual, Time Control, Off
|
|
23
|
+
- Automatic (PV) controls the pump depending on photovoltaic surplus
|
|
24
|
+
- Error detection (no power consumption, power despite “OFF”, overload)
|
|
25
|
+
- Safety functions (frost protection, overheating protection)
|
|
26
|
+
- Pump power recommendation for variable-speed pumps
|
|
27
27
|
|
|
28
|
-
- **
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
- **
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
|
|
39
|
-
- **
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
- Ownership
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
28
|
+
- **Temperature Management**
|
|
29
|
+
- Up to 6 sensors (surface, bottom, flow, return, collector, outside temperature)
|
|
30
|
+
- Daily minimum / maximum
|
|
31
|
+
- Hourly change
|
|
32
|
+
- Differences (e.g., collector – air, surface – bottom, flow – return)
|
|
33
|
+
|
|
34
|
+
- **Solar Control**
|
|
35
|
+
- On/off thresholds with hysteresis
|
|
36
|
+
- Collector warning (with automatic reset at 10% below threshold)
|
|
37
|
+
- Optional speech output on warning
|
|
38
|
+
|
|
39
|
+
- **Heating / Heat Pump Control (new, test phase)**
|
|
40
|
+
- Automatic control of heating rod or heat pump based on pool temperature
|
|
41
|
+
- Target temperature and maximum safety temperature configurable
|
|
42
|
+
- Active only when:
|
|
43
|
+
- pool season is active
|
|
44
|
+
- pump mode **Automatic**
|
|
45
|
+
- maintenance mode is not active
|
|
46
|
+
- Priority logic:
|
|
47
|
+
- Maintenance mode fully blocks heating control
|
|
48
|
+
- Heating does not interfere with manual or time-based pump modes
|
|
49
|
+
- Configurable pump overrun time after heating ends
|
|
50
|
+
- Ownership protection:
|
|
51
|
+
- The pump is only switched off if it was previously switched on by the heatHelper itself
|
|
52
|
+
- Supports:
|
|
53
|
+
- switchable sockets **or**
|
|
54
|
+
- boolean control states of external heating systems
|
|
55
|
+
- Internal status and diagnostic section under `heat.*`
|
|
56
|
+
- Purely controlling, **no chemistry or solar logic**
|
|
57
57
|
|
|
58
|
-
**
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
- **
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
- **
|
|
71
|
-
-
|
|
72
|
-
|
|
73
|
-
- **
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
- PV
|
|
80
|
-
|
|
81
|
-
- **
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
58
|
+
**Note:**
|
|
59
|
+
This function is currently in a **test phase**.
|
|
60
|
+
The logic is fully implemented but should initially only be used by interested test users.
|
|
61
|
+
|
|
62
|
+
- **Photovoltaic Control (since v0.6.0)**
|
|
63
|
+
- Automatic pump control based on PV generation and household consumption
|
|
64
|
+
- Start logic: surplus ≥ (pump rated power + safety margin)
|
|
65
|
+
- Optional overrun during cloudy phases
|
|
66
|
+
- Ignore if daily circulation target reached
|
|
67
|
+
- Configuration via two foreign object IDs (power_generated_id, power_house_id)
|
|
68
|
+
- New pump mode “Automatic (PV)”
|
|
69
|
+
|
|
70
|
+
- **Time Control**
|
|
71
|
+
- Up to 3 freely configurable time windows per week
|
|
72
|
+
|
|
73
|
+
- **Runtime & Circulation**
|
|
74
|
+
- Counts runtime (today, total)
|
|
75
|
+
- Calculates daily circulation and remaining volume
|
|
76
|
+
- Backwash reminder with configurable interval (e.g., every 7 days)
|
|
77
|
+
- Display of last backwash including date
|
|
78
|
+
- Automatic reset after completed backwash
|
|
79
|
+
- PV mode considers circulation status (e.g., “Ignore when circulation reached”)
|
|
80
|
+
|
|
81
|
+
- **Consumption & Costs**
|
|
82
|
+
- Evaluation of an external kWh meter
|
|
83
|
+
- Daily, weekly, monthly and yearly consumption
|
|
84
|
+
- Calculation of electricity costs based on configurable price
|
|
85
|
+
|
|
86
|
+
**Note:**
|
|
87
|
+
Details about the behavior of consumption and cost values (e.g., after restarts or when changing the electricity meter) can be found here:
|
|
88
|
+
|
|
89
|
+
- [Documentation (English)](https://github.com/DasBo1975/ioBroker.poolcontrol/blob/main/docs/en/help.md)
|
|
90
|
+
- [Dokumentation (Deutsch)](https://github.com/DasBo1975/ioBroker.poolcontrol/blob/main/docs/de/help.md)
|
|
91
|
+
|
|
92
|
+
- **Statistics System**
|
|
93
|
+
- Section `analytics.statistics.*` with daily, weekly and monthly values
|
|
94
|
+
- Automatic calculation of min, max, average and runtime values
|
|
95
|
+
- Fully persistent data points (overinstall protection)
|
|
96
|
+
- HTML and JSON summaries per sensor and overall overview
|
|
97
|
+
|
|
98
|
+
- **Pressure Sensor Integration (since v0.7.x)**
|
|
99
|
+
- Real-time filter pressure measurement
|
|
100
|
+
- Trend analysis: rising / falling / stable
|
|
101
|
+
- Moving learning average (avg_bar)
|
|
102
|
+
- Self-learning min/max pressure values
|
|
103
|
+
- Diagnostic text + last update
|
|
104
|
+
- No automatic control – purely informational
|
|
105
|
+
- Normal pressure range configurable by the user
|
|
106
|
+
|
|
107
|
+
- **AI System (from v0.8.0)**
|
|
108
|
+
- Modules: Weather hints (Open-Meteo), pool tips, daily summary, weekend report
|
|
109
|
+
- Automatic text outputs with optional speech output
|
|
110
|
+
- Hourly weather updates for continuous refresh
|
|
111
|
+
- Anti-spam system to avoid duplicate hints
|
|
111
112
|
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
-
|
|
115
|
-
-
|
|
116
|
-
-
|
|
117
|
-
- Separate
|
|
118
|
-
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
-
|
|
127
|
-
-
|
|
128
|
-
-
|
|
129
|
-
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
-
|
|
135
|
-
- Anzeige der installierten Adapterversion
|
|
113
|
+
- **Forecast for Tomorrow (aiForecastHelper, from v0.8.0)**
|
|
114
|
+
- Automatically creates a daily weather forecast for the next day
|
|
115
|
+
- Analysis of temperature, weather situation, rain probability and wind strength
|
|
116
|
+
- Generates pool recommendations for the following day (e.g., close cover, little solar heat expected)
|
|
117
|
+
- Fully event-based and only requires Open-Meteo data from ioBroker geodata
|
|
118
|
+
- Separate switches under `ai.weather.switches.*` to enable/disable individual forecast functions
|
|
119
|
+
- Results stored under `ai.weather.outputs.forecast_text`
|
|
120
|
+
|
|
121
|
+
- **Chemistry Help (aiChemistryHelpHelper, from v0.8.x)**
|
|
122
|
+
- Interactive, purely informative AI help for water chemistry
|
|
123
|
+
- Selection of typical pool problems via selection field (e.g., pH too high/low, chlorine ineffective, green/cloudy water)
|
|
124
|
+
- Clear cause and solution descriptions as text output
|
|
125
|
+
- No automatic dosing
|
|
126
|
+
- No product recommendations
|
|
127
|
+
- No device control
|
|
128
|
+
- No speech output (purely visual information)
|
|
129
|
+
- Goal: understand causes and proceed systematically (measure → correct → filter → measure again)
|
|
130
|
+
- Data points under `ai.chemistry_help.*`
|
|
131
|
+
|
|
132
|
+
- **Info System (since v0.7.x)**
|
|
133
|
+
- Adapter information system
|
|
134
|
+
- Seasonal greetings (Christmas, New Year’s Eve, New Year, Easter)
|
|
135
|
+
- Display of installed adapter version
|
|
136
136
|
|
|
137
|
-
- **
|
|
138
|
-
-
|
|
139
|
-
-
|
|
137
|
+
- **Speech Outputs**
|
|
138
|
+
- Output via Alexa or Telegram
|
|
139
|
+
- Announcements on pump start/stop, errors or temperature thresholds
|
|
140
140
|
|
|
141
|
-
- **SystemCheck (
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
141
|
+
- **SystemCheck (Diagnostic Section)**
|
|
142
|
+
- Internal diagnostic section for debug and monitoring functions
|
|
143
|
+
- Selection of area to monitor (e.g., pump, solar, temperature)
|
|
144
|
+
- Continuous log of the latest changes
|
|
145
|
+
- Manual log clearing possible
|
|
146
146
|
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
This section is used exclusively for analysis and troubleshooting.
|
|
148
|
+
In normal operation, monitoring should remain disabled.
|
|
149
149
|
|
|
150
150
|
---
|
|
151
151
|
|
|
152
152
|
## Installation
|
|
153
153
|
|
|
154
|
-
1.
|
|
155
|
-
2.
|
|
156
|
-
3.
|
|
154
|
+
1. Install adapter via ioBroker Admin.
|
|
155
|
+
2. Create instance.
|
|
156
|
+
3. Configure in the Admin tab: pump power, sensors, solar, speech outputs, etc.
|
|
157
157
|
|
|
158
158
|
---
|
|
159
159
|
|
|
160
|
-
##
|
|
160
|
+
## Configuration
|
|
161
161
|
|
|
162
|
-
|
|
163
|
-
- **
|
|
164
|
-
- **
|
|
165
|
-
- **
|
|
166
|
-
- **
|
|
167
|
-
- **
|
|
168
|
-
- **
|
|
169
|
-
- **
|
|
162
|
+
Configuration is done via tabs in the Admin interface:
|
|
163
|
+
- **General** → Pool name, pool size, minimum circulation
|
|
164
|
+
- **Pump** → Pump power, power limits, safety functions
|
|
165
|
+
- **Temperatures** → Selection and object IDs of sensors
|
|
166
|
+
- **Solar Management** → On/off thresholds, hysteresis, warning threshold
|
|
167
|
+
- **Time Control** → Time windows for pump operation
|
|
168
|
+
- **Speech Outputs** → Activation, Alexa/Telegram integration
|
|
169
|
+
- **Consumption & Costs** → external kWh meter, electricity price
|
|
170
170
|
|
|
171
171
|
---
|
|
172
172
|
|
|
173
|
-
##
|
|
174
|
-
|
|
175
|
-
- Erweiterte PV- und Solar-Effizienzanalyse (COP-Berechnung, Tagesnutzen, Wetterintegration)
|
|
176
|
-
- Statistik-Exportfunktion (CSV/Excel)
|
|
177
|
-
- Diagnostic-Helper zur automatischen Systemprüfung
|
|
178
|
-
- Eigene Widgets für VIS/VIS2 (grafische Pool- und Solarvisualisierung)
|
|
179
|
-
- Steuerung von Poolbeleuchtung, Ventilen und Gegenstromanlagen
|
|
180
|
-
- Integration zusätzlicher Sensorboxen (z. B. TempBox, PressureBox, LevelBox)
|
|
181
|
-
- KI- und Sprach-Assistenten-Erweiterung (Pool-Tagesbericht, Tipps, Sprachbefehle)
|
|
173
|
+
## Planned Extensions
|
|
182
174
|
|
|
175
|
+
- Extended PV and solar efficiency analysis (COP calculation, daily benefit, weather integration)
|
|
176
|
+
- Statistics export function (CSV/Excel)
|
|
177
|
+
- Diagnostic helper for automatic system checks
|
|
178
|
+
- Own widgets for VIS/VIS2 (graphical pool and solar visualization)
|
|
179
|
+
- Control of pool lighting, valves and counter-current systems
|
|
180
|
+
- Integration of additional sensor boxes (e.g., TempBox, PressureBox, LevelBox)
|
|
181
|
+
- AI and voice assistant extension (pool daily report, tips, voice commands)
|
|
183
182
|
|
|
184
183
|
---
|
|
185
184
|
|
|
186
|
-
##
|
|
185
|
+
## Note
|
|
187
186
|
|
|
188
|
-
|
|
189
|
-
|
|
187
|
+
The adapter is under active development.
|
|
188
|
+
New features are added regularly – please refer to the changelog.
|
|
190
189
|
|
|
191
190
|
---
|
|
192
191
|
|
|
193
|
-
##
|
|
194
|
-
- [help.md (
|
|
192
|
+
## Documentation
|
|
193
|
+
- [help.md (detailed description and notes)](./help.md)
|
|
195
194
|
|
|
196
195
|
---
|
|
197
196
|
|
|
198
197
|
## Changelog
|
|
199
198
|
### **WORK IN PROGRESS**
|
|
200
199
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
-
|
|
204
|
-
-
|
|
200
|
+
### 1.2.0
|
|
201
|
+
Released: 15.02.2026
|
|
202
|
+
- Activation of multilingual support (i18n) in jsonConfig
|
|
203
|
+
- Bilingual labeling (German/English) of instance configuration
|
|
204
|
+
- No functional changes to the adapter
|
|
205
205
|
|
|
206
206
|
|
|
207
|
-
## v1.1.0
|
|
208
|
-
- **
|
|
209
|
-
-
|
|
210
|
-
-
|
|
207
|
+
## v1.1.0 Pump Power Recommendation (23.01.2026)
|
|
208
|
+
- **Pump Power Recommendation (from v1.1.0)**
|
|
209
|
+
- New passive section `pump.speed`
|
|
210
|
+
- Derives a clear logical performance state of the running pump:
|
|
211
211
|
- `off`, `frost`, `low`, `normal`, `high`, `boost`
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
-
|
|
216
|
-
-
|
|
217
|
-
-
|
|
218
|
-
- **
|
|
219
|
-
- **
|
|
220
|
-
-
|
|
212
|
+
- Performance state is based exclusively on:
|
|
213
|
+
- existing pump logic
|
|
214
|
+
- active helper (e.g., frost, solar, maintenance)
|
|
215
|
+
- current pump status
|
|
216
|
+
- Additionally provides a **recommended pump power in percent (0–100%)**
|
|
217
|
+
- Percentage values are **freely configurable** and **protected against overinstallation**
|
|
218
|
+
- **No active speed control**
|
|
219
|
+
- **No interference with existing pump control**
|
|
220
|
+
- Intended for connection to external systems such as:
|
|
221
221
|
- Shelly 0–10 V
|
|
222
|
-
-
|
|
223
|
-
- Blockly /
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
## v1.0.0
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
222
|
+
- Frequency converters
|
|
223
|
+
- Blockly / scripts
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
## v1.0.0 Additional Actuators (Lighting & Auxiliary Pumps) (02.01.2026)
|
|
227
|
+
- Control of optional pool actuators:
|
|
228
|
+
- Pool lighting (up to 3 channels)
|
|
229
|
+
- Auxiliary pumps / attractions (up to 3 channels)
|
|
230
|
+
- Full configuration via the Admin interface:
|
|
231
|
+
- Activation per actuator via checkbox
|
|
232
|
+
- Assignment of an **external object ID**
|
|
233
|
+
(e.g., switchable socket or boolean control state)
|
|
234
|
+
- Supported operating modes:
|
|
235
|
+
- On / Off
|
|
236
|
+
- Timed operation (runtime in minutes)
|
|
237
|
+
- Continuous operation
|
|
238
|
+
- Internal status and control states:
|
|
239
|
+
- current operating state
|
|
240
|
+
- remaining runtime
|
|
241
|
+
- switching status and operating mode
|
|
242
|
+
- Clear system separation:
|
|
243
|
+
- Additional actuators do **not**
|
|
244
|
+
affect pump, solar, heating, or AI logic
|
|
245
|
+
- Purely optional system extension
|
|
246
246
|
|
|
247
247
|
|
|
248
248
|
## v0.9.0 (WORK IN PROGRESS)
|
|
249
|
-
-
|
|
250
|
-
-
|
|
251
|
-
-
|
|
252
|
-
-
|
|
253
|
-
-
|
|
254
|
-
-
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
-
|
|
258
|
-
-
|
|
259
|
-
-
|
|
260
|
-
- Ownership
|
|
261
|
-
-
|
|
249
|
+
- Introduction of heating / heat pump control (`heatHelper`)
|
|
250
|
+
- Automatic heating request based on pool temperature
|
|
251
|
+
- Target and maximum temperature configurable
|
|
252
|
+
- Support for:
|
|
253
|
+
- switchable sockets
|
|
254
|
+
- boolean control states
|
|
255
|
+
- Pump overrun time after heating ends
|
|
256
|
+
- Priority system:
|
|
257
|
+
- Maintenance mode blocks heating control
|
|
258
|
+
- Active only in automatic mode
|
|
259
|
+
- Considers season status
|
|
260
|
+
- Ownership protection for pump control
|
|
261
|
+
- New internal state `heat.heating_request` for external evaluation
|
|
262
262
|
|
|
263
263
|
|
|
264
264
|
## v0.8.2 (2025-12-25)
|
|
265
|
-
-
|
|
266
|
-
-
|
|
267
|
-
-
|
|
268
|
-
-
|
|
269
|
-
-
|
|
270
|
-
-
|
|
271
|
-
-
|
|
272
|
-
-
|
|
273
|
-
-
|
|
265
|
+
- New AI module **Chemistry Help** (`aiChemistryHelpHelper`)
|
|
266
|
+
- Purely informative support system for pool water chemistry
|
|
267
|
+
- Selection of typical pool problems (e.g., pH too high/low, chlorine ineffective, green/cloudy water)
|
|
268
|
+
- Clear cause and solution hints as text output
|
|
269
|
+
- No automatic dosing
|
|
270
|
+
- No product recommendations
|
|
271
|
+
- No device or pump control
|
|
272
|
+
- No speech output (purely visual information)
|
|
273
|
+
- New data points under `ai.chemistry_help.*`
|
|
274
274
|
|
|
275
275
|
|
|
276
276
|
## v0.8.0 (2025-12-08)
|
|
277
|
-
-
|
|
278
|
-
-
|
|
279
|
-
-
|
|
280
|
-
- Anti-
|
|
281
|
-
-
|
|
282
|
-
-
|
|
283
|
-
-
|
|
284
|
-
-
|
|
285
|
-
-
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
290
|
-
-
|
|
291
|
-
-
|
|
277
|
+
- Modules: Weather hints (Open-Meteo), pool tips, daily summary, weekend report
|
|
278
|
+
- Automatic text outputs with optional speech output
|
|
279
|
+
- Hourly weather updates for continuous refresh
|
|
280
|
+
- Anti-spam system to avoid duplicate hints
|
|
281
|
+
- New AI forecast system `aiForecastHelper` integrated
|
|
282
|
+
- Creates a daily automatic “Forecast for Tomorrow” including:
|
|
283
|
+
- temperature range
|
|
284
|
+
- weather description
|
|
285
|
+
- rain probability
|
|
286
|
+
- wind analysis (light / moderate / strong)
|
|
287
|
+
- pool recommendations for the following day
|
|
288
|
+
- New switches, schedules and outputs under `ai.weather.*`
|
|
289
|
+
- Immediate initial execution after instance start added
|
|
290
|
+
- Extended Admin overview under “Help & Info” with important AI notes
|
|
291
|
+
- Improved internal structure of the AI system (aiHelper + aiForecastHelper)
|
|
292
292
|
|
|
293
293
|
|
|
294
294
|
## v0.7.4 (2025-12-03)
|
|
295
|
-
-
|
|
295
|
+
- Fixed bug in ControlHelper. Persistent protection for control.circulation.mode
|
|
296
296
|
|
|
297
297
|
|
|
298
298
|
## v0.7.0 (2025-11-29)
|
|
299
|
-
-
|
|
300
|
-
-
|
|
301
|
-
-
|
|
302
|
-
-
|
|
303
|
-
-
|
|
304
|
-
-
|
|
299
|
+
- Introduction of a new pressure sensor system under `pump.pressure.*`
|
|
300
|
+
- Support for external pressure sensor object ID (bar value from ioBroker)
|
|
301
|
+
- Trend detection (rising/falling/stable) and moving pressure average
|
|
302
|
+
- Self-learning min/max pressure values with manual reset state
|
|
303
|
+
- New diagnostic text (`status_text_diagnostic`) with extended analysis information
|
|
304
|
+
- Extended pump monitoring without automatic control logic (purely informational)
|
|
305
305
|
|
|
306
306
|
|
|
307
307
|
## v0.6.2 (2025-11-07)
|
|
308
|
-
-
|
|
309
|
-
-
|
|
310
|
-
-
|
|
311
|
-
-
|
|
308
|
+
- Revision of instance overview with new header structures for clearer operation
|
|
309
|
+
- New start page image “Egon in Workwear” integrated into the Admin interface
|
|
310
|
+
- Extension of speech system with configurable Alexa output times
|
|
311
|
+
- Adjustments and cleanup in jsonConfig, speechHelper and speechStates
|
|
312
312
|
|
|
313
313
|
|
|
314
314
|
## v0.6.0 (2025-11-03)
|
|
315
|
-
-
|
|
316
|
-
(
|
|
317
|
-
- Adapter
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
-
|
|
321
|
-
-
|
|
315
|
+
- Introduction of full photovoltaic control with automatic pump logic
|
|
316
|
+
(new pump mode `Automatic (PV)` under `pump.mode`)
|
|
317
|
+
- Adapter reacts to PV surplus based on configurable household consumption and generation power
|
|
318
|
+
- Start logic: pump ON when surplus ≥ (rated power + threshold)
|
|
319
|
+
- Considers season status, overrun time and optional “circulation reached” protection
|
|
320
|
+
- Automatic migration adds new mode `auto_pv` to existing installations
|
|
321
|
+
- Improved internal logic, persistence and debug logging
|
|
322
322
|
|
|
323
323
|
## v0.5.5 (2025-11-01)
|
|
324
|
-
-
|
|
324
|
+
- Fixed endless loop in weekly and monthly statistics
|
|
325
325
|
|
|
326
326
|
## v0.5.3 (2025-10-30)
|
|
327
|
-
- Telegram
|
|
327
|
+
- Added Telegram user selection
|
|
328
328
|
|
|
329
329
|
## v0.5.2 (2025-10-30)
|
|
330
330
|
|
|
@@ -332,29 +332,27 @@ Neue Funktionen werden regelmäßig ergänzt – bitte den Changelog beachten.
|
|
|
332
332
|
|
|
333
333
|
### **0.4.0 (26.10.2025)**
|
|
334
334
|
|
|
335
|
-
**
|
|
336
|
-
-
|
|
337
|
-
-
|
|
338
|
-
-
|
|
339
|
-
-
|
|
335
|
+
**New Features**
|
|
336
|
+
- Introduction of the new statistics system under `analytics.statistics.temperature.today`
|
|
337
|
+
- Automatic collection of **min, max and average values** of all active temperature sensors
|
|
338
|
+
- Per sensor: JSON and HTML summaries with continuous updates
|
|
339
|
+
- Overall output of all sensors (table) under
|
|
340
340
|
`analytics.statistics.temperature.today.outputs.summary_all_html`
|
|
341
|
-
-
|
|
342
|
-
- **
|
|
343
|
-
-
|
|
341
|
+
- Fully **persistent data points** with overinstall protection
|
|
342
|
+
- **Automatic midnight reset** for daily reset including timestamp
|
|
343
|
+
- Preparation for future weekly, monthly and seasonal statistics
|
|
344
344
|
|
|
345
|
-
**
|
|
346
|
-
-
|
|
347
|
-
-
|
|
348
|
-
-
|
|
349
|
-
-
|
|
345
|
+
**Improvements**
|
|
346
|
+
- Unified structure through new main folder `analytics`
|
|
347
|
+
- No permanent loops or timer load – pure event processing
|
|
348
|
+
- Improved performance and memory stability
|
|
349
|
+
- Revised initialization of all statistics states at startup
|
|
350
350
|
|
|
351
|
-
**
|
|
352
|
-
|
|
353
|
-
(
|
|
351
|
+
**Note**
|
|
352
|
+
This version forms the stable basis for all following statistics and analysis functions
|
|
353
|
+
(e.g., weekly and monthly statistics, history and efficiency evaluations).
|
|
354
354
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
*(ältere Versionen siehe [io-package.json](./io-package.json))*
|
|
355
|
+
*(older versions see [io-package.json](./io-package.json))*
|
|
358
356
|
|
|
359
357
|
---
|
|
360
358
|
|
|
@@ -364,42 +362,37 @@ Diese Version bildet die stabile Basis für alle folgenden Statistik- und Analys
|
|
|
364
362
|
|
|
365
363
|
---
|
|
366
364
|
|
|
367
|
-
##
|
|
368
|
-
|
|
369
|
-
➡️ [
|
|
365
|
+
## Support Adapter Development
|
|
366
|
+
If you like **ioBroker.poolcontrol**, please consider making a donation:
|
|
367
|
+
➡️ [Support via PayPal](https://www.paypal.com/donate?business=dirk.bertin@t-online.de)
|
|
370
368
|
|
|
371
369
|
---
|
|
372
370
|
|
|
373
|
-
##
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
371
|
+
## Disclaimer
|
|
372
|
+
Use of the adapter is **at your own risk**.
|
|
373
|
+
The developer assumes **no liability** for damages resulting from installation, use or malfunctions.
|
|
374
|
+
This especially applies to direct control of electrical devices (e.g., pool pumps).
|
|
375
|
+
The user is responsible for the **safe installation and operation of their hardware**.
|
|
378
376
|
|
|
379
377
|
---
|
|
380
378
|
|
|
381
|
-
##
|
|
379
|
+
## License & Legal
|
|
380
|
+
|
|
381
|
+
PoolControl is an open-source project developed by D. Bertin (DasBo1975).
|
|
382
382
|
|
|
383
|
-
PoolControl
|
|
384
|
-
- Der Name PoolControl sowie das zugehörige Logo sind Eigenentwicklungen und dürfen
|
|
385
|
-
im Rahmen der Open-Source-Veröffentlichung (Adapter, GitHub-Repository, Wiki, Dokumentation,
|
|
386
|
-
Visualisierungen) frei verwendet werden.
|
|
383
|
+
- The name PoolControl and the associated logo are original developments and may be freely used within the scope of the open-source publication (adapter, GitHub repository, wiki, documentation, visualizations).
|
|
387
384
|
|
|
388
|
-
-
|
|
389
|
-
(insbesondere als Teil eines kommerziellen Produkts oder Dienstes) bedarf der ausdrücklichen Zustimmung des Autors.
|
|
385
|
+
- Commercial use, redistribution or publication in modified form (especially as part of a commercial product or service) requires the explicit permission of the author.
|
|
390
386
|
|
|
391
|
-
-
|
|
392
|
-
(z. B. Temperatur‑, Druck‑, Pegel‑, Elektronik‑ oder Steuerboxen) inklusive Entwürfen, Schaltplänen,
|
|
393
|
-
3D‑Modellen und Innenaufbauten unterliegen dem Urheberrecht von D. Bertin (DasBo1975).
|
|
387
|
+
- All developed sensor, hardware and enclosure constructions (e.g., temperature, pressure, level, electronics or control boxes) including designs, schematics, 3D models and internal constructions are subject to the copyright of D. Bertin (DasBo1975).
|
|
394
388
|
|
|
395
|
-
-
|
|
396
|
-
Hardware‑Designs ist nur mit schriftlicher Genehmigung des Autors gestattet.
|
|
389
|
+
- Publication, reproduction for resale or commercial use of these hardware designs is only permitted with written authorization from the author.
|
|
397
390
|
|
|
398
|
-
|
|
391
|
+
The software source code of this project is licensed under the MIT License. See LICENSE for details.
|
|
399
392
|
|
|
400
393
|
---
|
|
401
394
|
|
|
402
395
|
## License
|
|
403
|
-
Copyright (c) 2025–2026 D.
|
|
396
|
+
Copyright (c) 2025–2026 D. Bertin (DasBo1975) <dasbo1975@outlook.de>
|
|
404
397
|
|
|
405
|
-
MIT License
|
|
398
|
+
MIT License
|