diff --git a/fhem/CHANGED b/fhem/CHANGED index 2b243df55..143dfea8c 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - feature: 23_LUXTRONIK2: addded support for firmware V1.86.2 - change: 50_SSFile: compatibility to DSM7 - bugfix: 93_DbRep: Forum: topic,53584.msg1167044.html#msg1167044 - change: 49_SSCam: set compatibility to SVS version 8.2.9 diff --git a/fhem/FHEM/23_LUXTRONIK2.pm b/fhem/FHEM/23_LUXTRONIK2.pm index 63810e2ac..ffcf7334d 100644 --- a/fhem/FHEM/23_LUXTRONIK2.pm +++ b/fhem/FHEM/23_LUXTRONIK2.pm @@ -52,8 +52,8 @@ sub LUXTRONIK2_readData ($); #List of firmware versions that are known to be compatible with this modul -my $testedFirmware = "#V1.51#V1.54C#V1.60#V1.61#V1.64#V1.69#V1.70#V1.73#V1.77#V1.80#V1.81#V1.86.0#"; -my $compatibleFirmware = "#V1.51#V1.54C#V1.60#V1.61#V1.64#V1.69#V1.70#V1.73#V1.77#V1.80#V1.81#V1.86.0#"; +my $testedFirmware = "#V1.51#V1.54C#V1.60#V1.61#V1.64#V1.69#V1.70#V1.73#V1.77#V1.80#V1.81#V1.86.0#V1.86.2#"; +my $compatibleFirmware = "#V1.51#V1.54C#V1.60#V1.61#V1.64#V1.69#V1.70#V1.73#V1.77#V1.80#V1.81#V1.86.0#V1.86.2#"; sub ########################################## LUXTRONIK2_Log($$$)