Howto remove scrolling title from the Exstreamer 110 display

Revision as of 08:48, 17 March 2010 by Achims (talk | contribs)

o remove the scrolling stream and song title find the following lines in the ex110.ddf file and remove the sections marked with red. Keep the rest of the file as it is:

# print song name/channel nr/URL F30:S(0,1,2,16,"",0);P("\033[1;0H");B(16);P("\033[1;0H");T(!p(s1));G(31);T(z(i6));G(34);T(m("channels.ini",i5));G(32);G(33); # radio station name is present F31:S(0,1,2,16,s1,3); # channel number: channels.ini record exists -> print channel name F32:M("channels.ini",i5); # channel number (record does not exist) F33:P("Channel ");I("03",i5); # not channel based URL: print simply URL 1/2/3 F34:P("URL ");I("",i7);


The result should look like:


  1. print channel nr or URL

F30:S(0,1,2,16,"",0);P("\033[1;0H");B(16);P("\033[1;0H");T(z(i6));G(34);T(m("channels.ini",i5));G(32);G(33);

  1. channel number: channels.ini record exists -> print channel name

F32:M("channels.ini",i5);

  1. channel number (record does not exist)

F33:P("Channel ");I("03",i5);

  1. not channel based URL: print simply URL 1/2/3

F34:P("URL ");I("",i7);