Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
update pydukeenergy version to 1.0.2 to fix account-details 400 issue
Browse files Browse the repository at this point in the history
(fixes #128)
  • Loading branch information
mjmeli committed Sep 7, 2022
1 parent 81ecc9a commit 3d9ea13
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [0.1.2] - 2022-09-07

### Fixed

- Update pydukeenergy version to 1.0.2 to fix account details errors on initialization (fixes #128)

## [0.1.1] - 2022-05-24

### Fixed

- Update pydukeenergy version to 1.0.1 to fix login issue by @mjmeli in #101 (fixes #100)

## [0.1.0] - 2021-12-28

This is a large feature update to the Duke Energy integration. This is a large refactoring of the integration required to implement a new sensor - realtime power usage!

Highlights of this release will be:

- Moved default meter selection logic into abstracted pyduke-energy function select_default_meter
- Implementation of real-time power usage sensor
- New sensor `sensor.duke_energy_current_usage_w` that represents the real-time power usage in watts.
- This data is pushed from the gateway device every 1-3 seconds. NOTE: This produces a lot of data. If this update interval is too frequent for you, you can configure a throttling interval in seconds via the integration configuration.
- Note that since this is power usage, it cannot be used as-is for the Home Assistant energy dashboard. Instead, you can use the `sensor.duke_energy_usage_today_kwh` sensor, or you need to feed this real-time sensor through the Riemann sum integral integration.
- Add rounding to usage today sensor
- Additional debug logging for investigating issues

## [0.0.11] - 2021-12-15

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions custom_components/duke_energy_gateway/manifest.json
@@ -1,12 +1,12 @@
{
"domain": "duke_energy_gateway",
"name": "Duke Energy Gateway",
"version": "0.1.1",
"version": "0.1.2",
"documentation": "https://github.com/mjmeli/ha-duke-energy-gateway",
"issue_tracker": "https://github.com/mjmeli/ha-duke-energy-gateway/issues",
"dependencies": [],
"config_flow": true,
"codeowners": ["@mjmeli"],
"requirements": ["pyduke-energy==1.0.1"],
"requirements": ["pyduke-energy==1.0.2"],
"iot_class": "cloud_polling"
}

0 comments on commit 3d9ea13

Please sign in to comment.