@@ -231,6 +231,13 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
231231 icon = None ,
232232 icon_off = None
233233 ),
234+ ExtBinarySensorEntityDescriptionStub (
235+ tag = Tag .SMARTFEEDINPRIORITYACTIVE ,
236+ entity_category = EntityCategory .DIAGNOSTIC ,
237+ icon = None ,
238+ icon_off = None ,
239+ entity_registry_enabled_default = False
240+ ),
234241 ExtBinarySensorEntityDescriptionStub (
235242 tag = Tag .LP_VEHICLEDETECTIONACTIVE ,
236243 entity_category = EntityCategory .DIAGNOSTIC ,
@@ -306,8 +313,14 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
306313 entity_category = EntityCategory .CONFIG ,
307314 device_class = None ,
308315 icon = "mdi:cash-off" ,
309- entity_registry_enabled_default = False ,
310- integrated_supported = False
316+ entity_registry_enabled_default = False
317+ ),
318+ ExtButtonEntityDescriptionStub (
319+ tag = Tag .SMARTFEEDINPRIORITYLIMIT ,
320+ entity_category = EntityCategory .CONFIG ,
321+ device_class = None ,
322+ icon = "mdi:cash-off" ,
323+ entity_registry_enabled_default = False
311324 )
312325]
313326
@@ -391,6 +404,17 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
391404 native_step = 0.005 ,
392405 native_unit_of_measurement = "@@@/kWh" ,
393406 ),
407+ ExtNumberEntityDescriptionStub (
408+ tag = Tag .SMARTFEEDINPRIORITYLIMIT ,
409+ entity_category = EntityCategory .CONFIG ,
410+ icon = "mdi:cash-multiple" ,
411+ mode = NumberMode .BOX ,
412+ native_max_value = 2.50 ,
413+ native_min_value = - 0.50 ,
414+ native_step = 0.005 ,
415+ native_unit_of_measurement = "@@@/kWh" ,
416+ entity_registry_enabled_default = False
417+ ),
394418 ExtNumberEntityDescriptionStub (
395419 tag = Tag .ENABLEDELAY ,
396420 entity_category = EntityCategory .CONFIG ,
0 commit comments