Hallo,
ich habe nun etwas probiert.
Das decrement der "Zeit" ist nur zum testen.
Leider habe ich einen Fehler. Wenn die "Zeit" auf <=0 ist, startet im nächsten Zyklus die Zeit neu, weil
$self->{timerstart} plötzlich "0" wird ??
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/perl -w
use warnings;
use strict;
package timer;
########################################################################################
sub new
{
my $classname = shift;
my $self = {timerstart => 0};
return bless($self, $classname);
}
########################################################################################
sub TON
{
my $self = shift;
my $vke = shift;
my $zeit = shift;
if ($vke == 0)
{
$self->{timerstart} = 0;
$self->{aktzeit} = 0;
return 0;
}
#Timer initialisieren
if ($self->{timerstart} == 0 && $vke == 1)
{
$self->{timerstart} = 1;
$self->{aktzeit} = $zeit;
}
if ($self->{timerstart} = 1 && $self->{aktzeit} > 0 )
{
$self->{aktzeit} -= 0.8;
print "Timer noch nicht 0\n";
return 0;
}
else
{
$self->{aktzeit} = 0;
print "Timer ist 0\n";
return 1;
}
}
########################################################################################
my $timer_1 = timer->new();
my $retval_timer_1;
while (1)
{
sleep(1);
$retval_timer_1 = $timer_1->TON(1,10);
print "$retval_timer_1=$timer_1->{aktzeit}\n";
}
Gruß
piet
Last edited: 2015-06-03 21:21:18 +0200 (CEST)