Und noch eins:
Da wird die Power aufgedreht: Überprüf mal, ob das überhaupt klappen kann
Code:
$crystal = 8000000                                          'Quarzfrequenz
Config Scl = Portc.0                                        'Ports fuer IIC-Bus
Config Sda = Portc.1
I2cinit

 I2cstart

DO
 I2cwbyte &H74  
 I2cwbyte &B01000010   ' jetzt wär die mittlere LED aus
 I2cstop
 wait 1    ' pause
 I2cwbyte &H74  
 I2cwbyte &B10100010   ' jetzt leucht' nur die mittlere LED
 I2cstop
 wait 1   ' pause
 LOOP   ' alles nochmal
END
Funzt die Blinkerei ?