Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C Quellcode formatieren: <code>Quellcode</code> BASIC Quellcode formatieren: <basic>Quellcode</basic> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! -> I > Hallo erstmal. > Ich versuche mal Hilfe zu geben. Also im IDE muss ein Projekt eröffnet werden. Dazu kommt dann eine Datei > hier z.B. LED01.cbas > > Programm compilieren und dann übertragen. Dann bitte starten. An den Ports muss es dann blinken. > > mfg G > > > <basic> > Dim aa As Integer > Dim ret As Integer > > Sub main() > > Port_DataDirBit(16 , 1) ' Port C0 > Port_DataDirBit(18 , 1) ' Port C2 > Port_DataDirBit(20 , 1) ' Port C4 > > Port_WriteBit(16, 1) > Port_WriteBit(18, 1) > Port_WriteBit(20 , 1) > > aa = 9 > > Do > > Port_WriteBit(16 , 0 ) > AbsDelay(1000) > Port_WriteBit(16 , 1) > AbsDelay(1000) > > Msg_WriteText("LED 1") > Msg_WriteChar(13) > > Port_WriteBit(18 , 0 ) > AbsDelay(1000) > Port_WriteBit(18 , 1) > AbsDelay(1000) > Msg_WriteText("LED 2") > Msg_WriteChar(13) > > Port_WriteBit(20 , 0 ) > AbsDelay(1000) > Port_WriteBit(20 , 1) > AbsDelay(1000) > Msg_WriteText("LED 3") > Msg_WriteChar(13) > > Loop While (aa > 1) > > End Sub > </basic>