Difference between revisions of "Howto remove scrolling title from the Exstreamer 110 display"

Line 6: Line 6:
  # radio station name is present
  # radio station name is present
F31:S(0,1,2,16,s1,3);
F31:S(0,1,2,16,s1,3);
# channel number: channels.ini record exists -> print channel name
# channel number: channels.ini record exists -> print channel name
F32:M("channels.ini",i5);
F32:M("channels.ini",i5);
# channel number (record does not exist)
# channel number (record does not exist)
F33:P("Channel ");I("03",i5);
F33:P("Channel ");I("03",i5);
# not channel based URL: print simply URL 1/2/3
# not channel based URL: print simply URL 1/2/3
F34:P("URL ");I("",i7);
F34:P("URL ");I("",i7);
</pre>
</pre>


The result should look like:
The result should look like:
---------------------
<pre>
# print channel nr or URL
# 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);
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);
Line 24: Line 24:
# not channel based URL: print simply URL 1/2/3
# not channel based URL: print simply URL 1/2/3
F34:P("URL ");I("",i7);
F34:P("URL ");I("",i7);
---------------------
</pre>

Revision as of 08:59, 17 March 2010

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:

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