Einfache Uhr: Unterschied zwischen den Versionen

Aus Ethersex_Wiki
Wechseln zu: Navigation, Suche
Zeile 1: Zeile 1:
 
<pre>
 
<pre>
CLOCK_USED()
 
 
 
CONTROL_START
 
CONTROL_START
  

Version vom 31. Juli 2011, 16:15 Uhr

CONTROL_START

THREAD(mainloop)
        dnl Update the time ...
        TTY_SELECT(clock)
        TTY_HOME()
        TTY_WRITE_TIME()

        WAIT(1)
THREAD_END(mainloop)

ON STARTUP DO
        dnl Initialize display and write out greeting
        TTY_CLEAR()
        TTY_GOTO(1,0)
        TTY_WRITE("Hallo stesie\n")

        dnl Create sub-window to display a clock at the upper right-hand side
        TTY_CREATE_WINDOW(clock, 1, 8, 0, COLS - 8)

        THREAD_START(mainloop)
END

CONTROL_END