-
Notifications
You must be signed in to change notification settings - Fork 41
Add option to send values to IDM and add Lambda and Ovum heatpump #1030
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
Merged
LKuemmel
merged 10 commits into
openWB:feature_consumer
from
seaspotter:consumer-grid-values-ui
Aug 17, 2026
Merged
Changes from 7 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
35104c8
Add PV-Überschuss/Systemwerte senden option for IDM, Lambda, OVUM con…
seaspotter 7c206de
Update alert message and remove select input for PV values
seaspotter 5924756
Revise Modbus TCP settings and remove surplus option
seaspotter b97d0e0
Remove Netzsaldo select input from consumer.vue
seaspotter 0c1068d
Merge branch 'feature_consumer' into consumer-grid-values-ui
seaspotter c0dacc0
Update IDM/Lambda usage hints to match current usage-type wording
seaspotter 25dc399
Merge branch 'consumer-grid-values-ui' of https://github.com/seaspott…
seaspotter 8a47bcd
Update alert message in consumer.vue for clarity
seaspotter 3c9f1d2
Update alert message in consumer.vue for clarity
seaspotter 0819b42
Fix formatting in consumer.vue alert message
seaspotter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,43 @@ | ||
| <template> | ||
| <div class="device-ovum"> | ||
| <openwb-base-heading> Einstellungen für OVUM Wärmepumpe (CubeSpeicher/MPlus) </openwb-base-heading> | ||
| <openwb-base-alert subtype="info"> | ||
| Modbus TCP muss am Regler unter "Fachmann/SYS/TCP" mit fester IP-Adresse eingerichtet sein. | ||
| Bei Verwendungszweck "Ein/Aus schaltbar" steuert openWB SG-Ready über Modbus TCP - stelle | ||
| sicher, dass SG-Ready an der Wärmepumpe nicht zusätzlich über physische Kontakte extern | ||
| verdrahtet ist, da sich beide Wege gegenseitig überschreiben können. | ||
| </openwb-base-alert> | ||
| <openwb-base-text-input | ||
| title="IP oder Hostname" | ||
| subtype="host" | ||
| required | ||
| :model-value="device.configuration.ip_address" | ||
| @update:model-value="updateConfiguration($event, 'configuration.ip_address')" | ||
| /> | ||
| <openwb-base-number-input | ||
| title="Port" | ||
| required | ||
| :min="1" | ||
| :max="65535" | ||
| :model-value="device.configuration.port" | ||
| @update:model-value="updateConfiguration($event, 'configuration.port')" | ||
| /> | ||
| <openwb-base-number-input | ||
| title="Modbus ID" | ||
| required | ||
| :model-value="device.configuration.modbus_id" | ||
| min="1" | ||
| max="255" | ||
| @update:model-value="updateConfiguration($event, 'configuration.modbus_id')" | ||
| /> | ||
| </div> | ||
| </template> | ||
|
|
||
| <script> | ||
| import ConsumerDeviceConfigMixin from "../../ConsumerDeviceConfigMixin.vue"; | ||
|
|
||
| export default { | ||
| name: "ConsumerOvum", | ||
| mixins: [ConsumerDeviceConfigMixin], | ||
| }; | ||
| </script> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.