Commit d240b65 1 parent fc0d1e6 commit d240b65 Copy full SHA for d240b65
File tree 2 files changed +11
-12
lines changed
custom_components/luxtronik
2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,16 @@ async def async_setup_entry(
205
205
icon = "mdi:pump" ,
206
206
device_class = DEVICE_CLASS_RUNNING ,
207
207
),
208
+ LuxtronikBinarySensor (
209
+ hass = hass ,
210
+ luxtronik = luxtronik ,
211
+ deviceInfo = deviceInfo ,
212
+ sensor_key = 'calculations.ID_WEB_HUPout' ,
213
+ unique_id = "unloading_pump" ,
214
+ name = text_unloading_pump ,
215
+ icon = "mdi:pump" ,
216
+ device_class = DEVICE_CLASS_RUNNING ,
217
+ ),
208
218
209
219
# calculations.ID_WEB_ASDin Soledruck ausreichend
210
220
# calculations.ID_WEB_HDin Hochdruck OK
@@ -219,18 +229,7 @@ async def async_setup_entry(
219
229
220
230
deviceInfoHeating = hass .data [f"{ DOMAIN } _DeviceInfo_Heating" ]
221
231
if deviceInfoHeating is not None :
222
- text_solar_pump = get_sensor_text (lang , "solar_pump" )
223
232
entities += [
224
- LuxtronikBinarySensor (
225
- hass = hass ,
226
- luxtronik = luxtronik ,
227
- deviceInfo = deviceInfo ,
228
- sensor_key = 'calculations.ID_WEB_HUPout' ,
229
- unique_id = "unloading_pump" ,
230
- name = text_unloading_pump ,
231
- icon = "mdi:pump" ,
232
- device_class = DEVICE_CLASS_RUNNING ,
233
- ),
234
233
]
235
234
236
235
deviceInfoDomesticWater = hass .data [f"{ DOMAIN } _DeviceInfo_Domestic_Water" ]
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ class LuxMode(Enum):
203
203
204
204
LUX_SENSOR_PUMP_OPTIMIZATION_TIME : Final = "parameters.ID_Einst_Popt_Nachlauf_akt"
205
205
LUX_SENSOR_MAXIMUM_CIRCULATION_PUMP_SPEED : Final = "parameters.ID_Einst_P155_PumpHeat_Max"
206
- LUX_SENSOR_HEATING_TEMPERATURE_CORRECTION : Final = "parameters.ID_Einst_WK_akt"
206
+ LUX_SENSOR_HEATING_TARGET_CORRECTION : Final = "parameters.ID_Einst_WK_akt"
207
207
LUX_SENSOR_HEATING_ROOM_TEMPERATURE_IMPACT_FACTOR : Final = "parameters.ID_RBE_Einflussfaktor_RT_akt"
208
208
LUX_SENSOR_HEATING_THRESHOLD : Final = "parameters.ID_Einst_Heizgrenze"
209
209
LUX_SENSOR_HEATING_THRESHOLD_TEMPERATURE : Final = "parameters.ID_Einst_Heizgrenze_Temp"
You can’t perform that action at this time.
0 commit comments