Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Remove config category on sensors (#193)
Browse files Browse the repository at this point in the history
* Remove config category on sensors

* Increase version to 1.5.10
  • Loading branch information
elupus authored Nov 2, 2023
1 parent 122d769 commit 9057b6c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"codeowners": [
"@elupus"
],
"version": "1.5.9"
"version": "1.5.10"
}
20 changes: 10 additions & 10 deletions sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,54 +196,54 @@ class NibeSensorEntityDescription(SensorEntityDescription):
NibeSensorEntityDescription(
key="47407",
name="AUX5",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47408",
name="AUX4",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47409",
name="AUX3",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47410",
name="AUX2",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47411",
name="AUX1",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47412",
name="X7",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="48745",
name="country",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47212",
name="set max electrical add.",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="47214",
device_class=SensorDeviceClass.CURRENT,
name="fuse size",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
NibeSensorEntityDescription(
key="43122",
device_class=SensorDeviceClass.FREQUENCY,
name="allowed compr. freq. min",
entity_category=EntityCategory.CONFIG,
entity_category=EntityCategory.DIAGNOSTIC,
),
)
PARAMETER_SENSORS_LOOKUP = {x.key: x for x in PARAMETER_SENSORS}
Expand Down

0 comments on commit 9057b6c

Please sign in to comment.