Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

Re: Probleme mit Display vom app-board Kategorie: Programmierung (von Sascha - 11.04.2006 9:38)
Als Antwort auf Probleme mit Display vom app-board von Erich - 11.04.2006 9:21

> Hallo,
>
> ich stelle mich an wie ein Huhn zum pinkeln.
>
> Was mache ich hier falsch?
>
>
> //-----------
>   thread main
> //-----------
> {
>   lcd.init();
>   lcd.print("bla");
>   sleep 2000;
>   lcd.print("blubb");
>   quit 1;
>   lcd.print("umpf");
> }
>
>

Hallo Erich,

probier mal :

thread main

{
 lcd.init();
 lcd.clear();
}

loop
{
 lcd.print("Trallala");
 sleep 1000;
 lcd.clear();
 lcd.print("  und");
 sleep 1000;
 lcd.clear();
 lcd.print("Hoppsasa");
 sleep 1000;
}


GruĂ?
Sascha


> Das ist ein gemoddetes step01-Programm.
> Das Display ist und bleibt tot - die Bibliothek "lcd.c2" ist eingebunden.
> Vielleicht hätte der thread auch in eine andere Kategorie gehört. Ich bin
> mal wieder etwas frustriert :)
>
> Freue mich auf Antworten!


    Antwort schreiben


Antworten:

Re: Probleme mit Display vom app-board (von Sascha - 11.04.2006 9:47)
    Re: Probleme mit Display vom app-board (von Erich - 11.04.2006 10:31)
    Re: Probleme mit Display vom app-board (von Erich - 11.04.2006 10:16)
        Re: Probleme mit Display vom app-board (von krassos - 11.04.2006 15:15)
            Re: Probleme mit Display vom app-board (von Erich - 11.04.2006 16:52)