Skip to content
Merged
Changes from 1 commit
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
45 changes: 45 additions & 0 deletions templates/definition/charger/xtherma.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
template: xtherma
products:
- brand: Xtherma
description:
generic: experimental
group: heating
# requirements:
# evcc: ["sponsorship"]
params:
- name: modbus
choice: ["tcpip"]
- name: tempsource
type: choice
choice: ["warmwater", "buffer"]
render: |
type: heatpump
setmaxpower:
source: modbus
{{- include "modbus" . | indent 2 }}
register:
address: 71
type: holding
encoding: uint32
getmaxpower:
source: modbus
{{- include "modbus" . | indent 2 }}
register:
address: 71
type: holding
encoding: uint32
temp:
source: modbus
{{- include "modbus" . | indent 2 }}
register:
address: 123
type: input
encoding: int32
scale: 10
limittemp:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this should be templimit instead.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you guessing or did you actually test this? See https://github.com/evcc-io/evcc/blob/master/charger/measurement/heating.go#L10

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ping @55Jojo2024 did you test this?

source: modbus
{{- include "modbus" . | indent 2 }}
register:
address: 501
type: input
encoding: int32
Loading