71_PHILIPS_AUDIO: Added internet radio favorite selection. Thanks to Peter.
git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@10288 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# 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.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- feature: PHILIPS_AUDIO: Favorite station selection
|
||||||
- feature: YAMAHA_AVR: new set commands and readings for tuner control
|
- feature: YAMAHA_AVR: new set commands and readings for tuner control
|
||||||
- new set commands tunerFrequency,tunerPreset for
|
- new set commands tunerFrequency,tunerPreset for
|
||||||
controlling tuner frequencies and selecting presets.
|
controlling tuner frequencies and selecting presets.
|
||||||
|
|||||||
@@ -8,9 +8,10 @@
|
|||||||
# such as MCi, Streamium and Fidelio devices.
|
# such as MCi, Streamium and Fidelio devices.
|
||||||
# The module provides basic functionality accessible through the port 8889 of the device:
|
# The module provides basic functionality accessible through the port 8889 of the device:
|
||||||
# (http://<device_ip>:8889/index).
|
# (http://<device_ip>:8889/index).
|
||||||
|
# It seems the 3000 family e.g. NP3500, NP3700, NP3900 use that port.
|
||||||
#
|
#
|
||||||
# Copyright by Radoslaw Watroba
|
# Copyright by Radoslaw Watroba
|
||||||
# (e-mail: ra666ack@googlemail.com)
|
# (e-mail: ra666ack at googlemail dot com)
|
||||||
#
|
#
|
||||||
# This file is part of fhem.
|
# This file is part of fhem.
|
||||||
#
|
#
|
||||||
@@ -151,6 +152,7 @@ sub PHILIPS_AUDIO_Set
|
|||||||
"aux:noArg ".
|
"aux:noArg ".
|
||||||
#"input:aux,internetRadio,mediaLibrary,onlineServices ".
|
#"input:aux,internetRadio,mediaLibrary,onlineServices ".
|
||||||
"inetRadioPreset:1,2,3,4,5,6,7,8,9,10 ".
|
"inetRadioPreset:1,2,3,4,5,6,7,8,9,10 ".
|
||||||
|
"inetRadioFavorite:1,2,3,4,5,6,7,8,9,10 ".
|
||||||
"statusRequest:noArg ".
|
"statusRequest:noArg ".
|
||||||
#"addToFavourites:noArg ".
|
#"addToFavourites:noArg ".
|
||||||
#"removeFromFavourites:noArg ".
|
#"removeFromFavourites:noArg ".
|
||||||
@@ -261,6 +263,13 @@ sub PHILIPS_AUDIO_Set
|
|||||||
$hash->{helper}{inetRadioPreset} = $a[2];
|
$hash->{helper}{inetRadioPreset} = $a[2];
|
||||||
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
||||||
}
|
}
|
||||||
|
elsif($what eq "inetRadioFavorite")
|
||||||
|
{
|
||||||
|
# Hierarchichal navigation through the contents mandatory
|
||||||
|
$hash->{helper}{cmdStep} = 1;
|
||||||
|
$hash->{helper}{inetRadioFavorite} = $a[2];
|
||||||
|
PHILIPS_AUDIO_SendCommand($hash, "/index", "", $what, $a[2]);
|
||||||
|
}
|
||||||
elsif($what eq "volumeStraight")
|
elsif($what eq "volumeStraight")
|
||||||
{
|
{
|
||||||
if($a[2] >= 0 and $a[2] <= 64)
|
if($a[2] >= 0 and $a[2] <= 64)
|
||||||
@@ -536,6 +545,28 @@ sub PHILIPS_AUDIO_ParseResponse
|
|||||||
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$".sprintf("%03d", $hash->{helper}{inetRadioPreset})."\$1", "","inetRadioPreset", $hash->{helper}{inetRadioPreset});
|
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$".sprintf("%03d", $hash->{helper}{inetRadioPreset})."\$1", "","inetRadioPreset", $hash->{helper}{inetRadioPreset});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
elsif($cmd eq "inetRadioFavorite")
|
||||||
|
{
|
||||||
|
# This command must be processed hierarchicaly through the navigation path
|
||||||
|
if($hash->{helper}{cmdStep} == 1)
|
||||||
|
{
|
||||||
|
$hash->{helper}{cmdStep} = 2;
|
||||||
|
# Internet radio favorite
|
||||||
|
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$01\$001\$0", "", "inetRadioFavorite", $hash->{helper}{inetRadioFavorite});
|
||||||
|
}
|
||||||
|
elsif($hash->{helper}{cmdStep} == 2)
|
||||||
|
{
|
||||||
|
$hash->{helper}{cmdStep} = 3;
|
||||||
|
# Favorite Presets
|
||||||
|
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$02\$002\$0", "","inetRadioFavorite", $hash->{helper}{inetRadioFavorite});
|
||||||
|
}
|
||||||
|
elsif($hash->{helper}{cmdStep} == 3)
|
||||||
|
{
|
||||||
|
$hash->{helper}{cmdStep} = 4;
|
||||||
|
# Favorite Preset select
|
||||||
|
PHILIPS_AUDIO_SendCommand($hash, "/nav\$03\$03\$".sprintf("%03d", $hash->{helper}{inetRadioFavorite})."\$1", "","inetRadioFavorite", $hash->{helper}{inetRadioFavorite});
|
||||||
|
}
|
||||||
|
}
|
||||||
elsif($cmd eq "play_pause")
|
elsif($cmd eq "play_pause")
|
||||||
{
|
{
|
||||||
if($data =~ /SUCCESS/)
|
if($data =~ /SUCCESS/)
|
||||||
@@ -852,7 +883,8 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
|||||||
<ul><br><br>
|
<ul><br><br>
|
||||||
<u>Available commands:</u><br><br>
|
<u>Available commands:</u><br><br>
|
||||||
<li><b>aux</b> - Switches to the AUX input (MP3 Link or similar).</li>
|
<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 (be patient...).</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>mute</b> - Mutes the device.</li>
|
<li><b>mute</b> - Mutes the device.</li>
|
||||||
<li><b>unmute</b> - Unmutes the device.</li>
|
<li><b>unmute</b> - Unmutes the device.</li>
|
||||||
<li><b>next</b> - Selects the next song, preset etc.</li>
|
<li><b>next</b> - Selects the next song, preset etc.</li>
|
||||||
@@ -1004,7 +1036,8 @@ sub PHILIPS_AUDIO_STREAMIUMNP2txt
|
|||||||
<i>Bemerkung: Bitte bei den Befehlen und Parametern die Groß- und Kleinschreibung beachten.</i><br>
|
<i>Bemerkung: Bitte bei den Befehlen und Parametern die Groß- und Kleinschreibung beachten.</i><br>
|
||||||
<ul><br><br>
|
<ul><br><br>
|
||||||
<li><b>aux</b> - Schaltet auf den AUX Eingang um (MP3 Link oder ähnlich.).</li>
|
<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 (Gedult...).</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>mute</b> - Stummschaltung des Players.</li>
|
<li><b>mute</b> - Stummschaltung des Players.</li>
|
||||||
<li><b>unmute</b> - Deaktivierung der Stummschaltung.</li>
|
<li><b>unmute</b> - Deaktivierung der Stummschaltung.</li>
|
||||||
<li><b>next</b> - Wählt den nächten Titel, Voreinstellung etc.</li>
|
<li><b>next</b> - Wählt den nächten Titel, Voreinstellung etc.</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user