@@ -816,6 +816,14 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
816816 icon = "mdi:lock-open-outline" ,
817817 entity_registry_enabled_default = True
818818 ),
819+ ExtSelectEntityDescription (
820+ key = Tag .FRM .key ,
821+ options = ["0" , "1" , "2" ],
822+ #entity_category=EntityCategory.CONFIG,
823+ device_class = None ,
824+ icon = "mdi:transmission-tower-export" ,
825+ entity_registry_enabled_default = True
826+ ),
819827]
820828SENSOR_SENSORS = [
821829 # INDEXED Values...
@@ -1049,7 +1057,7 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
10491057 key = Tag .CDI .key ,
10501058 idx = "value" ,
10511059 factor = 60000 ,
1052- # entity_category=EntityCategory.DIAGNOSTIC,
1060+ entity_category = EntityCategory .DIAGNOSTIC ,
10531061 native_unit_of_measurement = UnitOfTime .MINUTES ,
10541062 state_class = SensorStateClass .MEASUREMENT ,
10551063 device_class = None ,
@@ -1224,6 +1232,7 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
12241232 icon = "mdi:lock-open-check-outline" ,
12251233 entity_registry_enabled_default = True
12261234 ),
1235+ # can be removed (later) to avoid 'Breaking Change'
12271236 ExtSensorEntityDescription (
12281237 key = Tag .FRM .key ,
12291238 entity_category = EntityCategory .DIAGNOSTIC ,
@@ -1233,6 +1242,7 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
12331242 icon = "mdi:transmission-tower-export" ,
12341243 entity_registry_enabled_default = False
12351244 ),
1245+ # can be removed (later) to avoid 'Breaking Change'
12361246 ExtSensorEntityDescription (
12371247 key = Tag .FRM .key ,
12381248 lookup = True ,
@@ -1241,7 +1251,7 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
12411251 state_class = None ,
12421252 device_class = None ,
12431253 icon = "mdi:transmission-tower-export" ,
1244- entity_registry_enabled_default = True
1254+ entity_registry_enabled_default = False
12451255 ),
12461256 ExtSensorEntityDescription (
12471257 key = Tag .LCK .key ,
@@ -2016,7 +2026,7 @@ class ExtSwitchEntityDescription(SwitchEntityDescription):
20162026 ),
20172027 ExtSwitchEntityDescription (
20182028 key = Tag .SU .key ,
2019- # entity_category=EntityCategory.CONFIG,
2029+ entity_category = EntityCategory .CONFIG ,
20202030 device_class = None ,
20212031 icon = "mdi:ab-testing" ,
20222032 entity_registry_enabled_default = True
0 commit comments