-
Notifications
You must be signed in to change notification settings - Fork 30
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
Phasenumschaltung #477
Phasenumschaltung #477
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,46 @@ | |
</openwb-base-button-group-input> | ||
</div> | ||
</openwb-base-card> | ||
<openwb-base-card title="Phasenumschaltung bei PV-Überschuss"> | ||
<div v-if="$store.state.mqtt['openWB/general/extern'] === true"> | ||
<openwb-base-alert subtype="info"> | ||
Diese Einstellungen sind nicht verfügbar, solange sich | ||
diese openWB im Steuerungsmodus "secondary" befindet. | ||
</openwb-base-alert> | ||
</div> | ||
<div v-else> | ||
<openwb-base-button-group-input | ||
title="Anzahl Phasen" | ||
:buttons="[ | ||
{ buttonValue: 1, text: '1' }, | ||
{ buttonValue: 3, text: 'Maximum' }, | ||
{ buttonValue: 0, text: 'Automatik' }, | ||
]" | ||
:model-value=" | ||
$store.state.mqtt[ | ||
'openWB/general/chargemode_config/scheduled_charging/phases_to_use_pv' | ||
] | ||
" | ||
@update:model-value=" | ||
updateState( | ||
'openWB/general/chargemode_config/scheduled_charging/phases_to_use_pv', | ||
$event, | ||
) | ||
" | ||
> | ||
<template #help> | ||
Hier kann eingestellt werden, ob Ladevorgänge im | ||
Modus "Zielladen" bei Laden mit PV-Überschuss | ||
mit nur einer Phase oder dem möglichen Maximum in | ||
Abhängigkeit der "Ladepunkt"- und "Fahrzeug"-Einstellungen | ||
durchgeführt werden. Im Modus "Automatik" entscheidet die Regelung, | ||
welche Einstellung genutzt wird, um das Ziel zu erreichen. | ||
Voraussetzung ist die verbaute Umschaltmöglichkeit | ||
zwischen 1- und 3-phasig (s.g. 1p3p). | ||
</template> | ||
</openwb-base-button-group-input> | ||
</div> | ||
</openwb-base-card> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Es gibt ja schon eine Karte "Phasenumschaltung". Inhaltlich passt die neue Einstellung da rein, daher bitte beide Einstellungen in eine Karte. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Wurde angepasst. |
||
<openwb-base-submit-buttons | ||
formName="scheduledChargeConfigForm" | ||
@save="$emit('save')" | ||
|
@@ -62,6 +102,7 @@ export default { | |
mqttTopicsToSubscribe: [ | ||
"openWB/general/extern", | ||
"openWB/general/chargemode_config/scheduled_charging/phases_to_use", | ||
"openWB/general/chargemode_config/scheduled_charging/phases_to_use_pv", | ||
], | ||
}; | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.