Dieses nervige High and Low anstatt simple 1 und 0 sagen zu können bei einer Picaxe ....
Wir wollten ja nicht die Bibel abschreiben , sondern ein kleines Rundumlicht zeigen , gelle
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
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
dirsc=%00010111
symbol LED1=c.0
symbol LED2=c.1
symbol LED3=c.2
symbol LED4=c.4
symbol W=w1
symbol Zaehler=w2
do
'--------------------
Zaehler=1
high LED2
do
for W=0 to 400
if Zaehler=W then
high LED1
endif
next W
low LED1
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
Zaehler=1
high LED3
do
for W=0 to 400
if Zaehler =W then
high LED2
end if
next W
low LED2
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
Zaehler=1
high LED4
do
for W=0 to 400
if Zaehler =W then
high LED3
end if
next W
low LED3
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
Zaehler=1
high LED1
do
for W=0 to 400
if Zaehler =W then
high LED4
end if
next W
low LED4
Zaehler=Zaehler+4
if Zaehler>=400 then
exit
end if
loop
'----------------------
loop
end