You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FHEM/88_Timer.pm
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,6 @@ use warnings;
23
23
use Time::HiRes qw(gettimeofday);
24
24
use FHEM::Meta;
25
25
26
-
our$VERSION_Timer = '2024-01-03';
27
-
28
26
my@action = qw(on off DEF);
29
27
my@names;
30
28
my@designations;
@@ -114,8 +112,6 @@ sub Timer_Define {
114
112
if (!defined AttrVal($name, 'room', undef)) { CommandAttr($hash,"$name room $typ"); } # set room, if only undef --> new def
115
113
}
116
114
117
-
$hash->{versionModule} = $VERSION_Timer;
118
-
119
115
### default value´s ###
120
116
readingsBeginUpdate($hash);
121
117
readingsBulkUpdate($hash, 'state' , 'Defined');
@@ -1356,6 +1352,7 @@ This makes it possible, for example, to have a timer run every Sunday at 15:30:0
1356
1352
<b><i><u>Hints:</u></i></b><br>
1357
1353
<ul><li>Entries in the system logfile like: <code>2019.09.20 22:15:01 3: Timer: time difference too large! interval=59, Sekunde=01</code> say that the timer has recalculated the time.</li></ul>
1358
1354
<ul><li>The offset function can only be activated at sunrise (SR) and sunset (SS).</li></ul>
1355
+
<ul><li>To implement a switching group, you can combine the timer module with the structure module.</li></ul>
1359
1356
1360
1357
</ul>
1361
1358
=endhtml
@@ -1484,6 +1481,7 @@ Damit ist es möglich, einen Timer beispielsweise nur jeden Sonntag um 15:30
1484
1481
<b><i><u>Hinweise:</u></i></b><br>
1485
1482
<ul><li>Einträge im Systemlogfile wie: <code>2019.09.20 22:15:01 3: Timer: time difference too large! interval=59, Sekunde=01</code> sagen aus, das der Timer die Zeit neu berechnet hat.</li></ul>
1486
1483
<ul><li>Die Funktion Offset ist nur bei Sonnenaufgang (SA) und Sonnenuntergang (SU) aktivierbar.</li></ul>
1484
+
<ul><li>Um eine Gruppenschaltung umzusetzen, so kann man das Timer Modul mit dem structure Modul kombinieren.</li></ul>
0 commit comments