systemzeit und hwcom Kategorie: Programmierung (von Mark - 10.03.2004 16:09) | ||
| ||
Hallo, ich möchte die Systemzeit über die die serielle Schnittstelle ausgeben: Leider wird nur der Doppelpunkt ausgegeben. Was mache ich falsch??? thread main { string a,b,c; c=":"; hwcom.init(); hwcom.setspeed(hwcom.SPEED_9600); hwcom.set_S0CON(hwcom.set8N1); loop { a=system.hour(); b=system.minute(); hwcom.flush(); hwcom.print(a); hwcom.print(c); hwcom.print(b); hwcom.ret(); sleep 1000; } } Danke... | ||
Antwort schreiben Antworten: Re: systemzeit und hwcom (von André H. - 11.03.2004 19:18) Re: systemzeit und hwcom (von Andi B. - 10.03.2004 18:09) Danke Andi (von Mark - 10.03.2004 18:21) |