LCD Display (198330-LN) von Conrad an Station 2 Kategorie: I²C-Bus (von Markus - 12.07.2009 10:42) | ||
| ||
Hallo Gemeinde, ich hätte eine Frage, hab mich gestern etwas mit dem I²C Display von Conrad Art.-Nr.: 198330-LN gespielt, ich wollte es mit dem SW-Treibermodul PCFLCD.C2 an meiner Station 2 in Betrieb nehmen. Hier das SW-Beispiel: //---------------- thread main //---------------- { pcflcd.setpcf(2); // Display an Addr. 2 (8574) pcflcd.init(); // Display initialisieren pcflcd.setLight(1); // Licht an loop { pcflcd.print("Hallo"); //Hallo ausgeben sleep 1000; //schlafen legen pcflcd.clear(); //Hallo wieder wegmachen sleep 1000; // noch 'ne Runde schlafen } } //und wieder von vorne Hab das hier im Forum gefunden. Leider Blinkt nur die Displaybeleuchtung und die obere Zeile ist schwarz, von Hallo ist nichts zu sehen :-( Diese Zeilen hab ich im PCFLCD.C2 modul ausgewählt, also wie bei LCDEXT.C2 für das Station Display (das funzt wunderbar) const Line[]= 0x80,0x80,0xC0,0x90,0xD0; // für 4x16 LCD const CharsperLine=16; // für 4x16 LCD Meine Vermutung ist, dass irgend was mit dem SW-Treiber nicht zu dem Display passt!? Hat hierzu jemannd eine Idee? Hab auch schon mehrere Adressen ausprobiert, immer das selbe Ergebniss. Ich hab noch einen MAX7311 am I²C Bus, der verrichtet tadellos seine Arbeit! Vielen Dank, Markus | ||
Antwort schreiben Antworten: Re: LCD Display (198330-LN) von Conrad an Station 2 (von nitram - 19.07.2009 11:37) Re: LCD Display (198330-LN) von Conrad an Station 2 (von Markus - 20.07.2009 12:57) Re: LCD Display (198330-LN) von Conrad an Station 2 (von nitraM - 20.07.2009 13:46) Re: LCD Display (198330-LN) von Conrad an Station 2 (von Markus H - 20.07.2009 21:49) Re: LCD Display (198330-LN) von Conrad an Station 2 (von nitraM - 20.07.2009 21:52) Re: LCD Display (198330-LN) von Conrad an Station 2 (von Markus - 21.07.2009 11:51) Re: LCD Display (198330-LN) von Conrad an Station 2 (von nitraM - 21.07.2009 12:38) Re: LCD Display (198330-LN) von Conrad an Station 2 (von Markus - 22.07.2009 7:47) |