2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

fhem.pl: add constants (Forum #96959)

git-svn-id: https://svn.fhem.de/fhem/trunk@18497 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2019-02-05 10:34:00 +00:00
parent f79a9d4247
commit 4deaccf401

View File

@ -270,6 +270,11 @@ use vars qw(@authorize); # List of authorization devices
use vars qw(@intAtA); # Internal timer array use vars qw(@intAtA); # Internal timer array
use vars qw(@structChangeHist); # Contains the last 10 structural changes use vars qw(@structChangeHist); # Contains the last 10 structural changes
use constant {
DAYSECONDS => 86400,
HOURSECONDS => 3600,
MINUTESECONDS => 60
};
$selectTimestamp = gettimeofday(); $selectTimestamp = gettimeofday();
$cvsid = '$Id$'; $cvsid = '$Id$';