Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EnergyIQ meter-readings can be uploaded #888

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ If someone is supporting to add Tado X functionality, raise a ticket or send an
| tado.[x].[yyyyyy].Rooms.[z].setting.fanLebel | Fanlebel (only AC devices with V3+ version) |
| tado.[x].[yyyyyy].Rooms.[z].setting.verticalSwing | Vertical swing (only AC devices with V3+ version) |
| tado.[x].[yyyyyy].Rooms.[z].setting.horizontalSwing | Horizontal swing (only AC devices with V3 and olderversions) |
| tado.[x].[yyyyyy].meterReadings | JSON-Object with {"date":"YYYY-MM-DD","reading": 1234} can be used to upload meter-readings to Energy IQ |

## Requires
* Node.js 18 or higher
Expand All @@ -50,11 +51,12 @@ If someone is supporting to add Tado X functionality, raise a ticket or send an
Placeholder for the next version (at the beginning of the line):
### __WORK IN PROGRESS__
-->
### 0.5.7-alpha.0 (2024-09-24)
### __WORK IN PROGRESS__
* (HGlab01) Change of attribute "light" supported
* (HGlab01) Add attribute 'connection'
* (HGlab01) Add attribute 'supportsFlowTemperatureOptimization'
* (HGlab01) Bump axios to 1.7.7
* (HGlab01) EnergyIQ meter-readings can be uploaded

### 0.5.6 (2024-08-06)
* (HGlab01) Improve AccessToken Management
Expand Down
6 changes: 6 additions & 0 deletions lib/state_attr.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,12 @@ const state_attrb = {
'type': 'number',
'unit': '°C'
},
'meterReadings': {
'name': 'Meter readings',
'role': 'json',
'type': 'string',
'write': true
},
'min': {
'name': 'min. Temperature',
'role': 'value.temperature',
Expand Down
Loading