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

Re: Internes Display Kategorie: Programmierung (von Guido - 6.08.2003 17:10)
Als Antwort auf Re: Internes Display von André H. - 5.08.2003 22:25

Hallo André

ich stelle Dir mal den Code rein wenn du Zeit hast schau ihn dir bitte mal an.
Ach ja ich denke er sollte dir bekannt vorkommen.


vielen Dank schon mal im vorraus.

Mfg Guido


//------------
  thread main
  //------------
{
  string std,min,sec,s;
  string tag,monat,day,d;
  int n, second,i;
  second=system.second();
  lcd.init();
  lcd.goto(0,0);
  {
  n=n+1;
  std = "";
  str.putintf (std,system.hour(),2);
  min="";
  str.putintf (min,system.minute(),2);
  sec="";
  str.putintf (sec,system.second(),2);
  s=std+":"+min+":"+sec;
  lcd.goto(0,0);
  lcd.print(s);
  lcd.clreol();
  lcd.goto(1,0);//lcdext.clear();
  tag = "";
  str.putintf (tag,system.day(),2);
  monat = "";
  str.putintf (monat,system.month(),2);
  day="";
  i=system.dow();
  day=myconst.DOW_NAMES[i];
  d=day+" "+tag+"."+monat;
  lcd.print(d);
  lcd.clreol();
  wait (not(second==system.second()));
  }


    Antwort schreiben


Antworten:

Re: Internes Display (von André H. - 7.08.2003 17:49)
    Re: Internes Display (von Guido - 8.08.2003 6:26)
    Re: Internes Display (von Guido - 7.08.2003 21:08)