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

small fixes #68

Merged
merged 2 commits into from
Jan 19, 2022
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
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