Re: Empfang hwcom Kategorie: Programmierung (von André H. - 9.08.2001 0:00) | |
Als Antwort auf Empfang hwcom von Gerd M. Karl - 8.08.2001 19:16
| |
Hallo Gerd, Versuch' mal folgendes: thread Comin { byte x,y; x=hwcom.rxd() if x { y=hwcom.get() lcd.clear(); lcd.put((x / 100)+0x30); lcd.put(((x % 100)/10)+0x30); lcd.put((x % 10)+0x30); lcd.goto(1,0); // Cursor 2. Zeile lcd.put((y / 100)+0x30); lcd.put(((y % 100)/10)+0x30); lcd.put((y % 10)+0x30); } } MfG André H Antworten bitte nur ins Forum! Fragen per EMail auf Forum-Postings werden nicht beantwortet! Das macht meine Heizung gerade | |
Antwort schreiben Antworten: Re: Empfang hwcom (von Gerd M. Karl - 13.08.2001 19:29) Re: Empfang hwcom (von André H. - 13.08.2001 20:54) Re: Empfang hwcom (von Gerd M. Karl - 14.08.2001 22:02) Re: Empfang hwcom (von André H. - 15.08.2001 7:07) |