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

PCF-LCD 4x20 an I2C-Terminal Kategorie: Sonstige Hardware (von ChristianK - 23.02.2003 18:40)


Hallo zusammen,
habe Problem mit 4x20 LCD am I2C-Terminal.
Die Ansteuerung funktioniert prinzipiel (Beleuchtung an/aus) aber sonst kommen nur
Sonderzeichen und das nur in Zeile 1 und 3.
Hier das Test-Prog:
//------------
  thread main   //Test pcflcd an I2C-Terminal
//------------
{
string s;
int n;
  pcflcd.setpcf(pvar.pcflcd_adress);
  pcflcd.init();
  sleep 35;
  pcflcd.clear();
  n=0;
 
loop
 {
  if n>7 n=0;
  pcflcd.setLight(1);
  s= "Relais an";
  pcflcd.clear();
  sleep 20;
  pcflcd.goto(1,0);
  pcflcd.print(s);
  pcflcd.goto(2,10);
  pcflcd.zahl2(n);
  sleep 2000;
  pcflcd.setLight(0);
  s= "Relais aus";
  pcflcd.goto(3,0);
  pcflcd.print(s);
  pcflcd.goto(4,10);
  pcflcd.zahl2(n);
  sleep 2000;
  n = n + 1;
  }
   
}
Hat jemand eine Idee, woran das liegen könnte ???
Danke für jeden Tip.

GruÃ?
Christian



    Antwort schreiben


Antworten:

Re: PCF-LCD 4x20 an I2C-Terminal (von ChristianK - 24.02.2003 17:32)