mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
vitoconnect: Bugfix (Forum #520)
git-svn-id: https://svn.fhem.de/fhem/trunk@23237 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
4c0a3c3e6a
commit
54e2644109
@ -171,9 +171,11 @@
|
||||
# Information aus dem GW auslesen (Attribut "vitoconnect_gw_readings" auf "1" setzen;
|
||||
# noch unvollständig!)
|
||||
#
|
||||
# readings for heating.power.production.demandCoverage.* fixed
|
||||
# 2020-07-06 readings for heating.power.production.demandCoverage.* fixed
|
||||
# bei logResponseOnce wird bei getCode angefangen damit auch gw.json neu erzeugt wird
|
||||
#
|
||||
# 2020-11-26 Bugfix für einige "set"-Kommandos für HK2 und HK3
|
||||
#
|
||||
#
|
||||
# ToDo: timeout konfigurierbar machen
|
||||
# Attribute implementieren und dokumentieren
|
||||
@ -1092,7 +1094,7 @@ sub vitoconnect_Set {
|
||||
elsif ( $opt eq "HK2-Solltemperatur_normal" ) {
|
||||
vitoconnect_action(
|
||||
$hash,
|
||||
"heating.circuits.0.operating.programs.normal/setTemperature",
|
||||
"heating.circuits.1.operating.programs.normal/setTemperature",
|
||||
"{\"targetTemperature\":$args[0]}",
|
||||
$name, $opt, @args
|
||||
);
|
||||
@ -1101,7 +1103,7 @@ sub vitoconnect_Set {
|
||||
elsif ( $opt eq "HK3-Solltemperatur_normal" ) {
|
||||
vitoconnect_action(
|
||||
$hash,
|
||||
"heating.circuits.0.operating.programs.normal/setTemperature",
|
||||
"heating.circuits.2.operating.programs.normal/setTemperature",
|
||||
"{\"targetTemperature\":$args[0]}",
|
||||
$name, $opt, @args
|
||||
);
|
||||
@ -1110,7 +1112,7 @@ sub vitoconnect_Set {
|
||||
elsif ( $opt eq "HK1-Solltemperatur_reduziert" ) {
|
||||
vitoconnect_action(
|
||||
$hash,
|
||||
"heating.circuits.1.operating.programs.reduced/setTemperature",
|
||||
"heating.circuits.0.operating.programs.reduced/setTemperature",
|
||||
"{\"targetTemperature\":$args[0]}",
|
||||
$name, $opt, @args
|
||||
);
|
||||
@ -1119,7 +1121,7 @@ sub vitoconnect_Set {
|
||||
elsif ( $opt eq "HK2-Solltemperatur_reduziert" ) {
|
||||
vitoconnect_action(
|
||||
$hash,
|
||||
"heating.circuits.2.operating.programs.reduced/setTemperature",
|
||||
"heating.circuits.1.operating.programs.reduced/setTemperature",
|
||||
"{\"targetTemperature\":$args[0]}",
|
||||
$name, $opt, @args
|
||||
);
|
||||
@ -1128,7 +1130,7 @@ sub vitoconnect_Set {
|
||||
elsif ( $opt eq "HK3-Solltemperatur_reduziert" ) {
|
||||
vitoconnect_action(
|
||||
$hash,
|
||||
"heating.circuits.0.operating.programs.reduced/setTemperature",
|
||||
"heating.circuits.2.operating.programs.reduced/setTemperature",
|
||||
"{\"targetTemperature\":$args[0]}",
|
||||
$name, $opt, @args
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user