-
-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Zuidwijk SlimmeLezer(+): Add new template for newer devices (#14896)
- Loading branch information
Roeland Lutters
authored
Jul 16, 2024
1 parent
7772d00
commit 94f27d4
Showing
1 changed file
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
template: slimmelezer-V2 | ||
products: | ||
- brand: Zuidwijk | ||
description: | ||
generic: SlimmeLezer(+) V2 | ||
requirements: | ||
description: | ||
de: Neuere Slimmelezer-Geräte verwenden eine andere Konfiguration. Probieren Sie diese Vorlage aus, wenn die andere fehlschlägt. | ||
en: More recent slimmelezer devices use a different configuration. Try this template if the other one fails. | ||
params: | ||
- name: usage | ||
choice: ["grid"] | ||
- name: host | ||
render: | | ||
type: custom | ||
power: | ||
source: calc | ||
add: | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_consumed | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: 1000 | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_produced | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: -1000 | ||
energy: | ||
source: calc | ||
add: | ||
- source: http | ||
uri: http://{{ .host }}/sensor/energy_produced_tariff_1 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
- source: http | ||
uri: http://{{ .host }}/sensor/energy_produced_tariff_2 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
currents: | ||
- source: http | ||
uri: http://{{ .host }}/sensor/current_phase_1 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
- source: http | ||
uri: http://{{ .host }}/sensor/current_phase_2 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
- source: http | ||
uri: http://{{ .host }}/sensor/current_phase_3 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
powers: | ||
- source: calc | ||
add: | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_produced_phase_1 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: 1000 | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_consumed_phase_1 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: -1000 | ||
- source: calc | ||
add: | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_produced_phase_2 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: 1000 | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_consumed_phase_2 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: -1000 | ||
- source: calc | ||
add: | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_produced_phase_3 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: 1000 | ||
- source: http | ||
uri: http://{{ .host }}/sensor/power_consumed_phase_3 | ||
headers: | ||
- content-type: application/json | ||
jq: .value | ||
scale: -1000 |