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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#picaxe 08M2
let dirsc=%00010111
symbol LED1 = pinc.0
symbol LED2 = pinc.1
symbol LED3 = pinc.2
symbol LED4 = pinc.4
symbol Zaehler=W2
do
'--------------------
Zaehler=1
LED2=1
do
for W1=0 to 400
if Zaehler=W1 then
LED1=1
endif
next W1
LED1=0
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
Zaehler=1
LED3=1
do
for W1=0 to 400
if Zaehler =W1 then
LED2=1
end if
next W1
LED2=0
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
Zaehler=1
LED4=1
do
for W1=0 to 400
if Zaehler =W1 then
LED3=1
end if
next W1
LED3=0
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
Zaehler=1
LED1=1
do
for W1=0 to 400
if Zaehler =W1 then
LED4=1
end if
next W1
LED4=0
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
loop
end