Re: systemzeit und hwcom Kategorie: Programmierung (von Andi B. - 10.03.2004 18:09) | ||
Als Antwort auf systemzeit und hwcom von Mark - 10.03.2004 16:09 | ||
| ||
Hallo Mark, du mu�t die variable a und c als String senden Beispiel: str.clear(a); str.putlong (a,system.hour()); hwcom.print(a); hwcom.print(b); str.clear(c); str.putlong (c,system.minute()); hwcom.print(c); gru� Andi B. > 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: Danke Andi (von Mark - 10.03.2004 18:21) |