Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - Zum C-Control-I-Forum - Zum C-Control-II-Forum

Re: anfang Kategorie: Programmierung C (von PeterS - 27.12.2009 12:06)
Als Antwort auf anfang von Jack - 24.12.2009 12:05

> 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
    }
}


    Antwort schreiben


Antworten: