Skip to content
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
20 changes: 10 additions & 10 deletions docs/devices/heating.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ chargers:
setmode:
source: switch
switch:
- case: 1 # normal
- case: 1 # dimm (not supported, yet)
set:
source: error
error: ErrNotAvailable
- case: 2 # normal
set:
# Hier wird der Funktionsaufruf eingefügt, der die Heizung in den Normalbetrieb setzt.
# Dafür können alle üblichen Plugins verwendet werden.
Expand All @@ -100,7 +104,7 @@ chargers:
type: template
template: shelly # Boost-Kontakt der Wärmepumpe
host: 192.168.0.101
- case: 2 # boost
- case: 3 # boost
set:
# Hier wird der Funktionsaufruf eingefügt, der die Heizung in den Boostbetrieb setzt.
source: const
Expand All @@ -111,19 +115,15 @@ chargers:
type: template
template: shelly # Boost-Kontakt der Wärmepumpe
host: 192.168.0.101
- case: 3 # dimm (not supported, yet)
set:
source: error
error: ErrNotAvailable
getmode:
# hier wird der Funktionsaufruf eingefügt, der den Status der Heizung zurückmeldet:
# 1 für Normalbetrieb
# 2 für Boostbetrieb
# 3 für reduzierte Leistung
# 1 für reduzierte Leistung
# 2 für Normalbetrieb
# 3 für Boostbetrieb
source: calc
add:
- source: const
value: 1
value: 2
- source: charger
config:
type: template
Expand Down
22 changes: 11 additions & 11 deletions i18n/en/docusaurus-plugin-content-docs/current/devices/heating.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ chargers:
setmode:
source: switch
switch:
- case: 1 # normal
- case: 1 # dimm (not supported, yet)
set:
source: error
error: ErrNotAvailable
- case: 2 # normal
set:
source: const
value: false
Expand All @@ -95,9 +99,9 @@ chargers:
type: template
template: shelly # Boost contact of the heat pump
host: 192.168.0.101
- case: 2 # boost
# Add the function here to set the heatpump in boost mode.
- case: 3 # boost
set:
# Add the function here to set the heatpump in boost mode.
source: const
value: true
set:
Expand All @@ -106,19 +110,15 @@ chargers:
type: template
template: shelly # Boost contact of the heat pump
host: 192.168.0.101
- case: 3 # dimm (not supported, yet)
set:
source: error
error: ErrNotAvailable
getmode:
# Add function here to get the current mode of the heatpump, return
# 1 for normal operation
# 2 for boost mode
# 3 for limited operation mode
# 1 for reduced operation
# 2 for normal operation
# 3 for boost operation
source: calc
add:
- source: const
value: 1
value: 2
- source: charger
config:
type: template
Expand Down