-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add heatpump section; move tariffs to top level
- Loading branch information
Showing
18 changed files
with
315 additions
and
81 deletions.
There are no files selected for viewing
This file contains 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 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,129 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
import TabItem from "@theme/TabItem"; | ||
import SponsorshipRequired from "/docs/_sponsorship_required.mdx"; | ||
import PhaseSwitchSupported from "/docs/_phase_switch_supported.mdx"; | ||
import DeviceConfig from "../../src/components/DeviceConfig"; | ||
import DeviceFeatures from "../../src/components/DeviceFeatures"; | ||
import DeviceFeatureFilter from "../../src/components/DeviceFeatureFilter"; | ||
|
||
# Wärmeerzeuger | ||
|
||
:::warning Experimentell | ||
Integration mit Wärmeerzeugern ist noch in der Erprobungsphase. | ||
Für die hier aufgeführten Geräte wird später ein [Sponsoring erforderlich](/docs/sponsorship) sein. | ||
::: | ||
|
||
evcc unterstützt unterschiedliche Arten von Wärmeerzeugern. | ||
Einfache Geräte wie Heizlüfter oder Ventilatoren können über [Smarte Schalter](./smartswitches) ein/ausgeschaltet werden. | ||
Auf dieser Seite erfährst du, wie du auch Wärmepumpen oder Heizstäbe regeln kannst. | ||
|
||
--- | ||
|
||
<!-- AUTO-GENERATED CONTENT BELOW THIS LINE --> | ||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
## Wärmeerzeuger | ||
|
||
### my-PV AC ELWA 2 | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: ac-elwa-2 | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port`} /> | ||
|
||
|
||
|
||
<SponsorshipRequired /> | ||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
### Stiebel Eltron | ||
|
||
#### LWA/LWZ (SG Ready) | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: stiebel-lwa | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port | ||
tempsource: # optional`} /> | ||
|
||
|
||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
#### WPM (SG Ready) | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: stiebel-wpm | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port | ||
tempsource: # optional`} /> | ||
|
||
|
||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
### Tecalor THZ (SG Ready) | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: stiebel-lwa | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port | ||
tempsource: # optional`} /> | ||
|
||
|
||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
### Vaillant SensoNET (SG Ready) | ||
|
||
Die Boost Funktion erwärmt Warmwasser und optional eine Boostzone. Die Boostzone wird durch die ID identifiziert. Die Boost Temperatur wird in Grad Celsius angegeben. | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: vaillant | ||
user: # Benutzerkonto (bspw. E-Mail Adresse, User Id, etc.) (optional) | ||
password: # Passwort des Benutzerkontos (bei führenden Nullen bitte in einfache Hochkommata setzen) (optional) | ||
zone: # Id der Boostzone (zusätzlich zu Warmwasser) (optional) | ||
setpoint: # Boost Temperatur (zusätzlich zu Warmwasser) (optional)`} advanced={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: vaillant | ||
user: # Benutzerkonto (bspw. E-Mail Adresse, User Id, etc.) (optional) | ||
password: # Passwort des Benutzerkontos (bei führenden Nullen bitte in einfache Hochkommata setzen) (optional) | ||
zone: # Id der Boostzone (zusätzlich zu Warmwasser) (optional) | ||
setpoint: # Boost Temperatur (zusätzlich zu Warmwasser) (optional) | ||
phases: 3 # Die maximale Anzahl der Phasen welche genutzt werden können (optional)`} /> | ||
|
||
|
||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_position: 4 | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 1 | ||
sidebar_position: 2 | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 3 | ||
sidebar_position: 5 | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
|
This file contains 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 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 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 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
File renamed without changes.
File renamed without changes.
This file contains 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
129 changes: 129 additions & 0 deletions
129
i18n/en/docusaurus-plugin-content-docs/current/devices/heating.mdx
This file contains 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,129 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
import TabItem from "@theme/TabItem"; | ||
import SponsorshipRequired from "/docs/_sponsorship_required.mdx"; | ||
import PhaseSwitchSupported from "/docs/_phase_switch_supported.mdx"; | ||
import DeviceConfig from "../../src/components/DeviceConfig"; | ||
import DeviceFeatures from "../../src/components/DeviceFeatures"; | ||
import DeviceFeatureFilter from "../../src/components/DeviceFeatureFilter"; | ||
|
||
# Heating | ||
|
||
:::warning Experimentell | ||
Integration mit Wärmeerzeugern ist noch in der Erprobungsphase. | ||
Für die hier aufgeführten Geräte wird später ein **[Sponsoring](/docs/sponsoring) erforderlich** sein. | ||
::: | ||
|
||
evcc unterstützt unterschiedliche Arten von Wärmeerzeugern. | ||
Einfache Geräte wie Heizlüfter oder Ventilatoren können über [Smarte Schalter](./smartswitches) ein/ausgeschaltet werden. | ||
Auf dieser Seite erfährst du, wie du auch Wärmepumpen oder Heizstäbe regeln kannst. | ||
|
||
--- | ||
|
||
<!-- AUTO-GENERATED CONTENT BELOW THIS LINE --> | ||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
## Heating devices | ||
|
||
### my-PV AC ELWA 2 | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: ac-elwa-2 | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port`} /> | ||
|
||
|
||
|
||
<SponsorshipRequired /> | ||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
### Stiebel Eltron | ||
|
||
#### LWA/LWZ (SG Ready) | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: stiebel-lwa | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port | ||
tempsource: # optional`} /> | ||
|
||
|
||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
#### WPM (SG Ready) | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: stiebel-wpm | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port | ||
tempsource: # optional`} /> | ||
|
||
|
||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
### Tecalor THZ (SG Ready) | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: stiebel-lwa | ||
# Modbus TCP | ||
modbus: tcpip | ||
id: 1 | ||
host: 192.0.2.2 # Hostname | ||
port: 502 # Port | ||
tempsource: # optional`} /> | ||
|
||
|
||
|
||
<!-- AUTO-GENERATED FROM TEMPLATE - PLEASE EDIT HERE https://github.com/evcc-io/evcc/tree/master/templates/definition/heating --> | ||
|
||
### Vaillant SensoNET (SG Ready) | ||
|
||
The boost function heats hot water and optionally a boost zone. The boost zone is identified by the ID. The boost temperature is specified in degrees Celsius. | ||
|
||
<DeviceConfig code={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: vaillant | ||
user: # User account (e.g. email address, user id, etc.) (optional) | ||
password: # Password of the user account (use single quotes in case of leading zeros) (optional) | ||
zone: # Boost zone id (in addition to hot water) (optional) | ||
setpoint: # Boost temperature setpoint (in addition to hot water) (optional)`} advanced={`chargers: | ||
- name: my_heating | ||
type: template | ||
template: vaillant | ||
user: # User account (e.g. email address, user id, etc.) (optional) | ||
password: # Password of the user account (use single quotes in case of leading zeros) (optional) | ||
zone: # Boost zone id (in addition to hot water) (optional) | ||
setpoint: # Boost temperature setpoint (in addition to hot water) (optional) | ||
phases: 3 # The maximum number of phases which can be used (optional)`} /> | ||
|
||
|
||
|
This file contains 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 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 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
Oops, something went wrong.