Hallo Leute,
ich hab heute mein Lauflicht fertig bekommen (wenn RGBs usw mal fertig werden gibts Bilder mit nem Video).
Allerdings habe ich ein kleines Problem mit den Elkos vor den LEDs.
Die Elkos sollen die LEDs nachleuchten lassen, aber das funktioniert nicht.
Bild hier
Nun meine Vermutung,
Kann das sein, dass die Spannung über den Multiplexer abgeleitet wird?
Danke für eure Gedult!
Mfg
Stefan
PS: Achja hier vielleicht noch der Code (Noch nicht fertig, aber funktioniert außer die Elkos halt)
Code:
$regfile = "m16def.dat"
$framesize = 32
$swstack = 32
$hwstack = 32
$crystal = 16000000
$baud = 9600
Waitms 50 'Einschwingzeit
Config Porta = Output
Config Portc = Output
Portc.5 = 1 'Elkos Masse
Porta.4 = 1 'Enable1 active = low
Enable1 Alias Porta.4
Dim I As Byte
Print "Start"
Do
For I = 0 To 15
Porta = I
Enable1 = 0
Waitms 500
Enable1 = 1
Next I
Loop
Lesezeichen