mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00
71_PHILIPS_AUDIO: Added favorites and presets selection by name.
git-svn-id: https://svn.fhem.de/fhem/trunk@10336 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
7be6e00339
commit
3baaefb0ba
@ -1,5 +1,6 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- feature: 71_PHILIPS_AUDIO: select presets and favorites by name.
|
||||
- feature: 50_TelegramBot: alias for commands, new readings,
|
||||
support for sending media files; plus fixes
|
||||
- feature: 20_ROOMMATE,
|
||||
|
@ -8,10 +8,10 @@
|
||||
# such as MCi, Streamium and Fidelio devices.
|
||||
# The module provides basic functionality accessible through the port 8889 of the device:
|
||||
# (http://<device_ip>:8889/index).
|
||||
# It seems the 3000 family e.g. NP3500, NP3700, NP3900 use that port.
|
||||
# e.g. NP3500, NP3700, NP3900.
|
||||
#
|
||||
# Copyright by Radoslaw Watroba
|
||||
# (e-mail: ra666ack at googlemail dot com)
|
||||
# (e-mail: ra666ack at g**glemail d*t c*m)
|
||||
#
|
||||
# This file is part of fhem.
|
||||
#
|
||||
@ -133,6 +133,17 @@ sub PHILIPS_AUDIO_Set
|
||||
|
||||
return "No Argument given" if(!defined($a[1]));
|
||||
|
||||
if (not defined($hash->{helper}{PRESETS}) or length($hash->{helper}{PRESETS}) == 0)
|
||||
{
|
||||
PHILIPS_AUDIO_updatePresets($hash);
|
||||
}
|
||||
|
||||
if (not defined($hash->{helper}{FAVORITES}) or length($hash->{helper}{FAVORITES}) == 0)
|
||||
{
|
||||
PHILIPS_AUDIO_updateFavorites($hash);
|
||||
}
|
||||
|
||||
|
||||
my $what = $a[1];
|
||||
|
||||
my $usage;
|
||||
@ -151,9 +162,13 @@ sub PHILIPS_AUDIO_Set
|
||||
"shuffle:on,off ".
|
||||
"aux:noArg ".
|
||||
#"input:aux,internetRadio,mediaLibrary,onlineServices ".
|
||||
"inetRadioPreset:1,2,3,4,5,6,7,8,9,10 ".
|
||||
"inetRadioFavorite:1,2,3,4,5,6,7,8,9,10 ".
|
||||
"inetRadioPreset:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 ".
|
||||
"inetRadioFavorite:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 ".
|
||||
"statusRequest:noArg ".
|
||||
"getInetRadioPresets:noArg ".
|
||||
"getInetRadioFavorites:noArg ".
|
||||
((exists($hash->{helper}{PRESETS}))? "inetRadioPresetByName:".($hash->{helper}{PRESETS})." ":"").
|
||||
((exists($hash->{helper}{FAVORITES}))? "inetRadioFavoriteByName:".($hash->{helper}{FAVORITES})." ":"").
|
||||
#"addToFavourites:noArg ".
|
||||
#"removeFromFavourites:noArg ".
|
||||
"repeat:single,all,off ".
|
||||
@ -263,6 +278,14 @@ sub PHILIPS_AUDIO_Set
|
||||
$hash->{helper}{inetRadioPreset} = $a[2];
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
||||
}
|
||||
elsif($what eq "inetRadioPresetByName")
|
||||
{
|
||||
# Hierarchichal navigation through the contents mandatory
|
||||
$hash->{helper}{cmdStep} = 1;
|
||||
my ($presetNumber, $presetName) = split(/:/, $a[2], 2);
|
||||
$hash->{helper}{inetRadioPresetNumber} = $presetNumber;
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
||||
}
|
||||
elsif($what eq "inetRadioFavorite")
|
||||
{
|
||||
# Hierarchichal navigation through the contents mandatory
|
||||
@ -270,6 +293,14 @@ sub PHILIPS_AUDIO_Set
|
||||
$hash->{helper}{inetRadioFavorite} = $a[2];
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
||||
}
|
||||
elsif($what eq "inetRadioFavoriteByName")
|
||||
{
|
||||
# Hierarchichal navigation through the contents mandatory
|
||||
$hash->{helper}{cmdStep} = 1;
|
||||
my ($favoriteNumber, $favoriteName) = split(/:/, $a[2], 2);
|
||||
$hash->{helper}{inetRadioFavoriteNumber} = $favoriteNumber;
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
||||
}
|
||||
elsif($what eq "volumeStraight")
|
||||
{
|
||||
if($a[2] >= 0 and $a[2] <= 64)
|
||||
@ -298,6 +329,21 @@ sub PHILIPS_AUDIO_Set
|
||||
{
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nowplay", "",$what, "noArg");
|
||||
}
|
||||
elsif($what eq "getInetRadioPresets")
|
||||
{
|
||||
|
||||
delete($hash->{helper}{PRESETS});
|
||||
|
||||
# Hierarchichal navigation through the contents mandatory
|
||||
$hash->{helper}{cmdStep} = 1;
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, "noArg");
|
||||
}
|
||||
elsif($what eq "getInetRadioFavorites")
|
||||
{
|
||||
# Hierarchichal navigation through the contents mandatory
|
||||
$hash->{helper}{cmdStep} = 1;
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, "noArg");
|
||||
}
|
||||
else
|
||||
{
|
||||
return $usage;
|
||||
@ -545,6 +591,28 @@ sub PHILIPS_AUDIO_ParseResponse
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$".sprintf("%03d", $hash->{helper}{inetRadioPreset})."\$1", "","inetRadioPreset", $hash->{helper}{inetRadioPreset});
|
||||
}
|
||||
}
|
||||
elsif($cmd eq "inetRadioPresetByName")
|
||||
{
|
||||
# This command must be processed hierarchicaly through the navigation path
|
||||
if($hash->{helper}{cmdStep} == 1)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 2;
|
||||
# Internet radio
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$01\$001\$0", "", "inetRadioPresetByName", $hash->{helper}{inetRadioPresetNumber});
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 2)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 3;
|
||||
# Presets
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$02\$001\$0", "","inetRadioPresetByName", $hash->{helper}{inetRadioPresetNumber});
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 3)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 4;
|
||||
# Preset select
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$". sprintf("%03d", $hash->{helper}{inetRadioPresetNumber}) . "\$1", "", "inetRadioPresetByName", $hash->{helper}{inetRadioPresetNumber});
|
||||
}
|
||||
}
|
||||
elsif($cmd eq "inetRadioFavorite")
|
||||
{
|
||||
# This command must be processed hierarchicaly through the navigation path
|
||||
@ -567,6 +635,27 @@ sub PHILIPS_AUDIO_ParseResponse
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$".sprintf("%03d", $hash->{helper}{inetRadioFavorite})."\$1", "","inetRadioFavorite", $hash->{helper}{inetRadioFavorite});
|
||||
}
|
||||
}
|
||||
elsif($cmd eq "inetRadioFavoriteByName")
|
||||
{
|
||||
# This command must be processed hierarchicaly through the navigation path
|
||||
if($hash->{helper}{cmdStep} == 1)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 2;
|
||||
# Internet radio
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$01\$001\$0", "", "inetRadioFavoriteByName", $hash->{helper}{inetRadioFavoriteNumber});
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 2)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 3;
|
||||
# Favorites
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$02\$002\$0", "","inetRadioFavoriteByName", $hash->{helper}{inetRadioFavoriteNumber});
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 3)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 4;
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$". sprintf("%03d", $hash->{helper}{inetRadioFavoriteNumber}) . "\$1", "", "inetRadioFavoriteByName", $hash->{helper}{inetRadioFavoriteNumber});
|
||||
}
|
||||
}
|
||||
elsif($cmd eq "play_pause")
|
||||
{
|
||||
if($data =~ /SUCCESS/)
|
||||
@ -755,11 +844,203 @@ sub PHILIPS_AUDIO_ParseResponse
|
||||
}
|
||||
}
|
||||
}
|
||||
elsif ($cmd eq "getInetRadioPresets")
|
||||
{
|
||||
# This command must be processed hierarchicaly through the navigation path
|
||||
if($hash->{helper}{cmdStep} == 1)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 2;
|
||||
# Internet radio
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$01\$001\$0", "","getInetRadioPresets", "noArg");
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 2)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 3;
|
||||
# Presets
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$02\$001\$0", "","getInetRadioPresets", "noArg");
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 3)
|
||||
{
|
||||
|
||||
my $listedItems; # Visible Items in the display. Max 8
|
||||
my $nextreqURL;
|
||||
my $i;
|
||||
my $presetID;
|
||||
my $presetName;
|
||||
|
||||
# Parse first 8 Presets
|
||||
if($data =~ /<title>Error<\/title>/)
|
||||
{
|
||||
# In case on presets defined the player returns an Error
|
||||
# Do nothing
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($data =~ /'nextrequrl':'(.+?)',/)
|
||||
{
|
||||
$nextreqURL = $1;
|
||||
#Log3 $name, 5, "NextreqURL: $nextreqURL";
|
||||
}
|
||||
|
||||
if ($data =~ /'totalListCount':(.+),/)
|
||||
{
|
||||
$hash->{helper}{TOTALINETRADIOPRESETS} = $1;
|
||||
readingsBulkUpdate($hash, "totalInetRadioPresets", $1);
|
||||
#Log3 $name, 5, "ListedItems: $listedItems";
|
||||
}
|
||||
|
||||
#if ($data =~ /'totalitems':(.+),/)
|
||||
#{
|
||||
# $listedItems = $1;
|
||||
#}
|
||||
|
||||
$data =~ s/\R//g; # Remove new lines
|
||||
|
||||
for(;;)
|
||||
{
|
||||
if($data =~ /{'title':'(.+?)',/g)
|
||||
{
|
||||
$presetName = $1;
|
||||
#Log3 $name, 5, "PresetName: $presetName";
|
||||
|
||||
if($data =~ /'id':(.+?),/g)
|
||||
{
|
||||
$presetID = $1;
|
||||
#Log3 $name, 5, "PresetIDLoop: $presetID";
|
||||
}
|
||||
if ($presetID ne "" and $presetName ne "")
|
||||
{
|
||||
readingsBulkUpdate($hash, "inetRadioPreset$presetID", $presetName);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
last;
|
||||
}
|
||||
}
|
||||
|
||||
#Log3 $name, 5, "PresetIDNachLoop: $presetID";
|
||||
|
||||
if($presetID < ($hash->{helper}{TOTALINETRADIOPRESETS})) # Maximum listed items = 8. Get the next items by sending the nextreqURL
|
||||
{
|
||||
PHILIPS_AUDIO_SendCommand($hash, $nextreqURL, "","getInetRadioPresets", "noArg");
|
||||
}
|
||||
else
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 4;
|
||||
if (exists($hash->{helper}{PRESETS}))
|
||||
{
|
||||
$hash->{helper}{PRESETS} = ""; # Reset the pull-down menue
|
||||
}
|
||||
PHILIPS_AUDIO_updatePresets($hash);
|
||||
#my $debug = $hash->{helper}{PRESETS};
|
||||
#Log3 $name, 5, "Presets: $debug";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
elsif ($cmd eq "getInetRadioFavorites")
|
||||
{
|
||||
|
||||
# This command must be processed hierarchicaly through the navigation path
|
||||
if($hash->{helper}{cmdStep} == 1)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 2;
|
||||
# Internet radio
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$01\$001\$0", "","getInetRadioFavorites", "noArg");
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 2)
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 3;
|
||||
# Favorites
|
||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$02\$002\$0", "","getInetRadioFavorites", "noArg");
|
||||
}
|
||||
elsif($hash->{helper}{cmdStep} == 3)
|
||||
{
|
||||
if($data =~ /<title>Error<\/title>/)
|
||||
{
|
||||
# In case on presets defined the player returns an Error
|
||||
# Do nothing
|
||||
}
|
||||
else
|
||||
{
|
||||
my $listedItems; # Visible Items in the display. Max 8
|
||||
my $nextreqURL;
|
||||
my $i;
|
||||
my $favoriteID;
|
||||
my $favoriteName;
|
||||
|
||||
# Parse first 8 Presets
|
||||
|
||||
if ($data =~ /'nextrequrl':'(.+?)',/)
|
||||
{
|
||||
$nextreqURL = $1;
|
||||
#Log3 $name, 5, "NextreqURL: $nextreqURL";
|
||||
}
|
||||
|
||||
if ($data =~ /'totalListCount':(.+),/)
|
||||
{
|
||||
$hash->{helper}{TOTALINETRADIOFAVORITES} = $1;
|
||||
readingsBulkUpdate($hash, "totalInetRadioFavorites", $1);
|
||||
#Log3 $name, 5, "ListedItems: $listedItems";
|
||||
}
|
||||
|
||||
#if ($data =~ /'totalitems':(.+),/)
|
||||
#{
|
||||
# $listedItems = $1;
|
||||
#}
|
||||
|
||||
$data =~ s/\R//g; # Remove new lines
|
||||
|
||||
for(;;)
|
||||
{
|
||||
if($data =~ /{'title':'(.+?)',/g)
|
||||
{
|
||||
$favoriteName = $1;
|
||||
#Log3 $name, 5, "FavoriteName: $favoriteName";
|
||||
|
||||
if($data =~ /'id':(.+?),/g)
|
||||
{
|
||||
$favoriteID = $1;
|
||||
#Log3 $name, 5, "FavoriteIDLoop: $favoriteID";
|
||||
}
|
||||
if ($favoriteID ne "" and $favoriteName ne "")
|
||||
{
|
||||
readingsBulkUpdate($hash, "inetRadioFavorite$favoriteID", $favoriteName);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
last;
|
||||
}
|
||||
}
|
||||
|
||||
#Log3 $name, 5, "FavoriteIDNachLoop: $favoriteID";
|
||||
|
||||
if($favoriteID < ($hash->{helper}{TOTALINETRADIOFAVORITES})) # Maximum listed items = 8. Get the next items by sending the nextreqURL
|
||||
{
|
||||
PHILIPS_AUDIO_SendCommand($hash, $nextreqURL, "","getInetRadioFavorites", "noArg");
|
||||
}
|
||||
else
|
||||
{
|
||||
$hash->{helper}{cmdStep} = 4;
|
||||
if (exists($hash->{helper}{FAVORITES}))
|
||||
{
|
||||
$hash->{helper}{FAVORITES} = ""; # Reset the pull-down menue
|
||||
}
|
||||
PHILIPS_AUDIO_updateFavorites($hash);
|
||||
#my $debug = $hash->{helper}{FAVORITES};
|
||||
#Log3 $name, 5, "Favorites: $debug";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
readingsEndUpdate($hash, 1);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
#############################
|
||||
# converts straight volume in percentage volume (volumestraightmin .. volumestraightmax => 0 .. 100%)
|
||||
@ -815,6 +1096,74 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
||||
return $string;
|
||||
}
|
||||
|
||||
#############################
|
||||
# Updates the pull-down menue
|
||||
sub PHILIPS_AUDIO_updatePresets
|
||||
{
|
||||
my ($hash) = @_;
|
||||
|
||||
if((not defined($hash->{helper}{PRESETS}) or length($hash->{helper}{PRESETS}) == 0))
|
||||
{
|
||||
my $presetName;
|
||||
|
||||
for(my $i = 1; $i < 11; $i++)
|
||||
{
|
||||
if(exists($hash->{READINGS}{"inetRadioPreset$i"}))
|
||||
{
|
||||
if($i != 1)
|
||||
{
|
||||
$presetName = ",";
|
||||
}
|
||||
$presetName .= $i . ":";
|
||||
$presetName .= $hash->{READINGS}{"inetRadioPreset$i"}{VAL};
|
||||
$presetName =~ s/ /_/g; # Replace blank by underscore
|
||||
$hash->{helper}{PRESETS} .= $presetName;
|
||||
}
|
||||
else
|
||||
{
|
||||
last;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$hash->{helper}{PRESETS} = "";
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
#############################
|
||||
# Updates the pull-down menue
|
||||
sub PHILIPS_AUDIO_updateFavorites
|
||||
{
|
||||
my ($hash) = @_;
|
||||
|
||||
if((not defined($hash->{helper}{FAVORITES}) or length($hash->{helper}{FAVORITES}) == 0))
|
||||
{
|
||||
my $favoriteName;
|
||||
|
||||
for(my $i = 1; $i < 11; $i++)
|
||||
{
|
||||
if(exists($hash->{READINGS}{"inetRadioFavorite$i"}))
|
||||
{
|
||||
if($i != 1)
|
||||
{
|
||||
$favoriteName = ",";
|
||||
}
|
||||
$favoriteName .= $i . ":";
|
||||
$favoriteName .= $hash->{READINGS}{"inetRadioFavorite$i"}{VAL};
|
||||
$favoriteName =~ s/ /_/g; # Replace blank by underscore
|
||||
$hash->{helper}{FAVORITES} .= $favoriteName;
|
||||
}
|
||||
else
|
||||
{
|
||||
last;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
=pod
|
||||
@ -883,8 +1232,12 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
||||
<ul><br><br>
|
||||
<u>Available commands:</u><br><br>
|
||||
<li><b>aux</b> - Switches to the AUX input (MP3 Link or similar).</li>
|
||||
<li><b>inetRadioPreset</b> [1..10] - Selects an internet radio preset (May take some seconds...).</li>
|
||||
<li><b>inetRadioFavorite</b> [1..10] - Selects an internet radio favorite (May take some seconds...).</li>
|
||||
<li><b>getInetRadioFavorites</b> - Reads the favorites. (May take some seconds...).</li>
|
||||
<li><b>getInetRadioPresets</b> - Reads the presets. (May take some seconds...).</li>
|
||||
<li><b>inetRadioFavorite</b> [1..24] - Selects an internet radio favorite (May take some seconds...).</li>
|
||||
<li><b>inetRadioPreset</b> [1..24] - Selects an internet radio preset (May take some seconds...).</li>
|
||||
<li><b>inetRadioFavoriteByName</b> [name] - Selects an internet radio favorite by name. (getInetRadioFavorites must be run previously for the command to become available.) (May take some seconds...).</li>
|
||||
<li><b>inetRadioPresetByName</b> [name] - Selects an internet radio preset by name. (getInetRadioPresets must be run previously for the command to become available.) (May take some seconds...).</li>
|
||||
<li><b>mute</b> - Mutes the device.</li>
|
||||
<li><b>unmute</b> - Unmutes the device.</li>
|
||||
<li><b>next</b> - Selects the next song, preset etc.</li>
|
||||
@ -956,12 +1309,16 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
||||
<ul>
|
||||
<li><b>albumArt</b> - Link to current album art or radio station.</li>
|
||||
<li><b>elapseTime</b> - Elapse time of the played audio.</li>
|
||||
<li><b>inetRadioFavorite[value]</b> - Name of the stored favorite.</li>
|
||||
<li><b>inetRadioPreset[value]</b> - Name of the stored preset.</li>
|
||||
<li><b>mute</b> - Reports the mute status (on|off).</li>
|
||||
<li><b>playing</b> - Reports the current playier status (yes|no).</li>
|
||||
<li><b>power</b> - Reports the current power status (on|absent).</li>
|
||||
<li><b>presence</b> - Reports the current presence (present|absent).</li>
|
||||
<li><b>state</b> - Reports the current state status (on|absent).</li>
|
||||
<li><b>subtitle</b> - Reports the current subtitle of played audio.</li>
|
||||
<li><b>totalInetRadioFavorites</b> - Number of stored favorites.</li>
|
||||
<li><b>totalInetRadioPresets</b> - Number of stored presets.</li>
|
||||
<li><b>title</b> - Reports the current title of played audio.</li>
|
||||
<li><b>totalTime</b> - Reports the total time of the played audio.</li>
|
||||
<li><b>volume</b> - Reports current relative volume (0..100).</li>
|
||||
@ -1036,8 +1393,12 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
||||
<i>Bemerkung: Bitte bei den Befehlen und Parametern die Groß- und Kleinschreibung beachten.</i><br>
|
||||
<ul><br><br>
|
||||
<li><b>aux</b> - Schaltet auf den AUX Eingang um (MP3 Link oder ähnlich.).</li>
|
||||
<li><b>inetRadioPreset</b> [1..10] - Wählt die Internetradio Voreinstellung (Das Umschalten kann einige Sekunden dauern...).</li>
|
||||
<li><b>inetRadioFavorite</b> [1..10] - Wählt den Internetradio-Lieblingssender (Das Umschalten kann einige Sekunden dauern...).</li>
|
||||
<li><b>getInetRadioFavorites</b> - Liest die Favoriten. (Kann einige Sekunden dauern...).</li>
|
||||
<li><b>getInetRadioPresets</b> - Liest die Presets. (Kann einige Sekunden dauern...).</li>
|
||||
<li><b>inetRadioFavorite</b> [1..24] - Wählt den Internetradio-Lieblingssender (Das Umschalten kann einige Sekunden dauern...).</li>
|
||||
<li><b>inetRadioPreset</b> [1..24] - Wählt die Internetradio Voreinstellung (Das Umschalten kann einige Sekunden dauern...).</li>
|
||||
<li><b>inetRadioFavoriteByName</b> [name] - Wählt einen Internetradio Favoriten mit Hilfe seines Names. (getInetRadioFavorites muss zuvor ausgeführt werden, damit der Befehl verfügbar wird. (Kann einige Sekunden dauern...).</li>
|
||||
<li><b>inetRadioPresetByName</b> [name] - Wählt eine Internetradio Voreinstellung mit Hilfe ihres Names. (getInetRadioPresets muss zuvor ausgeführt werden, damit der Befehl verfügbar wird. (Kann einige Sekunden dauern...).</li>
|
||||
<li><b>mute</b> - Stummschaltung des Players.</li>
|
||||
<li><b>unmute</b> - Deaktivierung der Stummschaltung.</li>
|
||||
<li><b>next</b> - Wählt den nächten Titel, Voreinstellung etc.</li>
|
||||
@ -1105,6 +1466,8 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
||||
<ul>
|
||||
<li><b>albumArt</b> - Link zum aktuellen Album art oder Radiostation.</li>
|
||||
<li><b>elapseTime</b> - Aktuelle Zeit des abgespielten Audiostückes.</li>
|
||||
<li><b>inetRadioFavorite[Wert]</b> - Name des/der gespeicherten Favoriten.</li>
|
||||
<li><b>inetRadioPreset[Wert]</b> - Name des/der gespeicherten Presets.</li>
|
||||
<li><b>mute</b> - Abfrage des Stummschaltungstatus (on|off).</li>
|
||||
<li><b>playing</b> - Abfrage des aktuelle Playierstatus (yes|no).</li>
|
||||
<li><b>power</b> - Abfrage des aktuellen Gerätezustands (on|absent).</li>
|
||||
@ -1112,6 +1475,8 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
||||
<li><b>state</b> - Abfrage des aktuellen 'state'-Status (on|absent).</li>
|
||||
<li><b>subtitle</b> - Untertiltel des abgespielten Audiostückes.</li>
|
||||
<li><b>title</b> - Titel des abgespielten Audiostückes.</li>
|
||||
<li><b>totalInetRadioFavorites</b> - Anzahl der gespeicherten Favoriten.</li>
|
||||
<li><b>totalInetRadioPresets</b> - Anzahl der gespeicherten Presets.</li>
|
||||
<li><b>totalTime</b> Gesamtspieldauer des Audiostückes.</li>
|
||||
<li><b>volume</b> - Aktuelle relative Lautstärke (0..100).</li>
|
||||
<li><b>volumeStraight</b> - Aktuelle absolute Lautstärke (0..64).</li>
|
||||
|
Loading…
x
Reference in New Issue
Block a user