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 > > Ich habe hier Ccontrol pro mega 128 auf projectboard. > > Ich möchte gerne einen ausgang on und off schalten, 1 second on, 1 second off. > > Ic verstehe dass dies eine kranke frage ist, > > aber doch, wem kann mich helfen mit das complete c program dass ich dan eingeben kann. > > > > Hallo Jack, > > hier ist ein Programm, das die LED1 dauernd ein- und ausschaltet. Sieh aber auch in den > Demoprogrammen nach dem LED Verzeichnis, das sind mehrere Beispielprogramme in der Art. > > Gruss Peter > > > void main(void) > { > Port_DataDirBit(PORT_LED1,PORT_OUT); // set LED1 port to ouput > > while(1) > { > Port_WriteBit(PORT_LED1,PORT_ON); // turn LED1 on > AbsDelay(1000); // delay 1 sec > Port_WriteBit(PORT_LED1,PORT_OFF); // turn LED1 off > AbsDelay(1000); // delay > } > }