Howto remove scrolling title from the Exstreamer 110 display

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

Howto remove scrolling title from the Exstreamer 110 display:

To remove the scrolling stream and song title it is necessary to edit the ex110.ddf file. Please 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:

# 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);
# 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);