diff --git a/fhem/FHEM/10_MAX.pm b/fhem/FHEM/10_MAX.pm index f774eaff0..bf8971b58 100755 --- a/fhem/FHEM/10_MAX.pm +++ b/fhem/FHEM/10_MAX.pm @@ -4,6 +4,7 @@ # package main; +use v5.10.1; use strict; use warnings; use MIME::Base64; @@ -862,13 +863,13 @@ MAX_Parse($$) For devices of type HeatingThermostat only. <value> maybe one of All values but "auto" maybe accompanied by the "until" clause, with <data> in format "dd.mm.yyyy HH:MM" (minutes may only be "30" or "00"!) - to set a temporary temperature until that date/time. Make sure that the cube has valid system time! + to set a temporary temperature until that date/time. Make sure that the cube/device has a correct system time.
  • groupid <id>
    For devices of type HeatingThermostat only. Writes the given group id the device's memory. To sync all devices in one room, set them to the same groupid greater than zero.
  • diff --git a/fhem/FHEM/14_CUL_MAX.pm b/fhem/FHEM/14_CUL_MAX.pm index 2daaa8003..54aeca24e 100644 --- a/fhem/FHEM/14_CUL_MAX.pm +++ b/fhem/FHEM/14_CUL_MAX.pm @@ -3,6 +3,8 @@ # Written by Matthias Gehre, M.Gehre@gmx.de, 2012-2013 package main; +use v5.10.1; + use strict; use warnings; use MaxCommon; diff --git a/fhem/FHEM/MaxCommon.pm b/fhem/FHEM/MaxCommon.pm index 3269c069b..98a5e3aff 100644 --- a/fhem/FHEM/MaxCommon.pm +++ b/fhem/FHEM/MaxCommon.pm @@ -1,5 +1,7 @@ package MaxCommon; +use v5.10.1; + require Exporter; @ISA = qw(Exporter); @EXPORT = qw(%device_types %msgId2Cmd %msgCmd2Id $defaultWeekProfile MAX_ParseTemperature validTemperature);