' Radiotext Ticker TTY ' Font is 1, 2 or 4 rx freq 96.5 Watchdog 0 delay 200 vol 40 BLUE = tft.rgb(0,0,255) YELLOW = tft.rgb(255,255,0) tft.cls() tft.rect.fill(0,110,320,170-110,BLUE) tty.size 4,-1,-1,-1,-1 tty "This is Terminal Radiotext ... snr = " & rx.snr() & " at " & rx.freq() & chr(10) timer 500,doTimer wait doTimer: txt = trim(rx.text()) txt = txt & " " if otxt<>txt then timer 0 tft.text.font(4) for i = 1 to len(txt) tty mid(txt,i,1) 'ticker delay 60 next i otxt=txt timer 500,doTimer endif st = trim(rx.station()) if ost <> st then tft.text.color(YELLOW,BLUE) if st <> "" then tft.text.draw(" "& st & " ",160,140,4) ost = st endif wait