Skip to content

Commit

Permalink
Merge pull request #68 from benderl/dev
Browse files Browse the repository at this point in the history
small fixes
  • Loading branch information
benderl authored Jan 19, 2022
2 parents 4fe426e + e6a0788 commit 4be9557
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/OpenwbSortableList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default {
return this.modelValue;
},
set(newValue) {
// this will never happen, as dragable component does not emit updates!
// this will never happen, as draggable component does not emit updates!
console.log("update in sortableList", newValue);
this.$emit("update:modelValue", newValue);
},
Expand Down
8 changes: 4 additions & 4 deletions src/components/devices/mqtt/bat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@
<ul>
<li>
<span class="text-info"
>openWB/set/bat/{{ componentId }}/power</span
>openWB/set/bat/{{ componentId }}/get/power</span
><br />
Speicherleistung in Watt, ohne Nachkommastellen (Integer),
positiv Ladung, negativ Entladung
</li>
<li>
<span class="text-info"
>openWB/set/bat/{{ componentId }}/imported</span
>openWB/set/bat/{{ componentId }}/get/imported</span
><br />
Geladene Energie in Wh, mit Nachkommastellen (Float), nur
positiv
</li>
<li>
<span class="text-info"
>openWB/set/bat/{{ componentId }}/exported</span
>openWB/set/bat/{{ componentId }}/get/exported</span
><br />
Entladene Energie in Wh, mit Nachkommastellen (Float), nur
positiv
</li>
<li>
<span class="text-info"
>openWB/set/bat/{{ componentId }}/soc</span
>openWB/set/bat/{{ componentId }}/get/soc</span
><br />
Ladestand des Speichers, ohne Nachkommastellen (Integer),
Gültige Werte 0 bis 100
Expand Down
4 changes: 2 additions & 2 deletions src/components/devices/mqtt/inverter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<ul>
<li>
<span class="text-info"
>openWB/set/pv/{{ componentId }}/power</span
>openWB/set/pv/{{ componentId }}/get/power</span
><br />
PV-Leistung in Watt, ohne Nachkommastellen (Integer), nur
negativ!
</li>
<li>
<span class="text-info"
>openWB/set/pv/{{ componentId }}/counter</span
>openWB/set/pv/{{ componentId }}/get/counter</span
><br />
Erzeugte Energie in Wh, mit Nachkommastellen (Float), nur
positiv
Expand Down

0 comments on commit 4be9557

Please sign in to comment.