Skip to content

Commit

Permalink
fix: shaper_current, and renamed to shaper_current_available (#435)
Browse files Browse the repository at this point in the history
* fix shaper_current, and renamed to shaper_current_available

* bump python-openevse-http to 0.1.74
  • Loading branch information
KipK authored Feb 6, 2025
1 parent abca7c7 commit b10b7b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions custom_components/openevse/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@
device_class=SensorDeviceClass.POWER,
entity_registry_enabled_default=False,
),
"shaper_current": OpenEVSESensorEntityDescription(
name="Shaper Current",
key="shaper_current_power",
"shaper_available_current": OpenEVSESensorEntityDescription(
name="Shaper Current Available",
key="shaper_available_current",
icon="mdi:flash",
native_unit_of_measurement=UnitOfElectricCurrent.AMPERE,
device_class=SensorDeviceClass.CURRENT,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/openevse/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/firstof9/openevse/issues",
"loggers": ["openevsehttp"],
"requirements": ["python-openevse-http==0.1.73"],
"requirements": ["python-openevse-http==0.1.74"],
"version": "0.0.0-dev",
"zeroconf": ["_openevse._tcp.local."]
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-openevse-http==0.1.73
python-openevse-http==0.1.74

0 comments on commit b10b7b2

Please sign in to comment.