Skip to content

Commit

Permalink
Slimmelezer-v2: fix phase power sign (#16546)
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerK62 authored Oct 7, 2024
1 parent dd3292f commit 72b5799
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/definition/meter/slimmelezer-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,38 +65,38 @@ render: |
headers:
- content-type: application/json
jq: .value
scale: 1000
scale: -1000
- source: http
uri: http://{{ .host }}/sensor/power_consumed_phase_1
headers:
- content-type: application/json
jq: .value
scale: -1000
scale: 1000
- source: calc
add:
- source: http
uri: http://{{ .host }}/sensor/power_produced_phase_2
headers:
- content-type: application/json
jq: .value
scale: 1000
scale: -1000
- source: http
uri: http://{{ .host }}/sensor/power_consumed_phase_2
headers:
- content-type: application/json
jq: .value
scale: -1000
scale: 1000
- source: calc
add:
- source: http
uri: http://{{ .host }}/sensor/power_produced_phase_3
headers:
- content-type: application/json
jq: .value
scale: 1000
scale: -1000
- source: http
uri: http://{{ .host }}/sensor/power_consumed_phase_3
headers:
- content-type: application/json
jq: .value
scale: -1000
scale: 1000

0 comments on commit 72b5799

Please sign in to comment.