mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
37_Spotify: resume on target
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@14512 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
83fe2c423b
commit
6e14eaff4f
1
CHANGED
1
CHANGED
@ -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: 37_Spotify: resume on target
|
||||
- feature: 93_DbRep: V5.1.0, create dumps of MySQL on client- or serverside,
|
||||
column UNIT is added to the result of fetchrows-command
|
||||
- feature: ESPEasy: command reference revised
|
||||
|
@ -105,7 +105,7 @@ sub Spotify_Set($$@) {
|
||||
|
||||
return Spotify_update($hash, 1) if($cmd eq 'update');
|
||||
return Spotify_pausePlayback($hash) if($cmd eq 'pause');
|
||||
return Spotify_resumePlayback($hash) if($cmd eq 'resume');
|
||||
return Spotify_resumePlayback($hash, @args > 0 ? join(' ', @args) : undef) if($cmd eq 'resume');
|
||||
return Spotify_setVolume($hash, 1, $args[0], defined $args[1] ? join(' ', @args[1..$#args]) : undef) if ($cmd eq 'volume');
|
||||
return Spotify_skipToNext($hash) if ($cmd eq 'skipToNext' || $cmd eq 'skip' || $cmd eq 'next');
|
||||
return Spotify_skipToPrevious($hash) if ($cmd eq 'skipToPrevious' || $cmd eq 'previous' || $cmd eq 'prev');
|
||||
@ -330,12 +330,13 @@ sub Spotify_pausePlayback($) { # pause playback
|
||||
return undef;
|
||||
}
|
||||
|
||||
sub Spotify_resumePlayback($) { # resume playback
|
||||
my ($hash) = @_;
|
||||
sub Spotify_resumePlayback($$) { # resume playback
|
||||
my ($hash, $device_id) = @_;
|
||||
my $name = $hash->{NAME};
|
||||
$device_id = Spotify_getTargetDeviceID($hash, $device_id, 0); # resolve target device id
|
||||
$hash->{helper}{is_playing} = 1;
|
||||
readingsSingleUpdate($hash, 'is_playing', 1, 1);
|
||||
Spotify_apiRequest($hash, 'me/player/play', undef, 'PUT', 0);
|
||||
Spotify_apiRequest($hash, 'me/player/play' . (defined $device_id ? "?device_id=$device_id" : ''), undef, 'PUT', 0);
|
||||
Log3 $name, 4, "$name: resume";
|
||||
return undef;
|
||||
}
|
||||
@ -623,7 +624,7 @@ sub Spotify_togglePlayback($) { # toggle playback (pause if active, resume other
|
||||
if($hash->{helper}{is_playing}) {
|
||||
Spotify_pausePlayback($hash);
|
||||
} else {
|
||||
Spotify_resumePlayback($hash);
|
||||
Spotify_resumePlayback($hash, undef);
|
||||
}
|
||||
|
||||
return undef;
|
||||
@ -1049,8 +1050,8 @@ sub Spotify_isDisabled($) {
|
||||
sets the repeat mode: either <i>one</i>, <i>all</i> (meaning playlist or album) or <i>off</i>
|
||||
</li>
|
||||
<li>
|
||||
<i>resume</i><br>
|
||||
resumes playback
|
||||
<i>resume [ <device_id / device_name> ]</i><br>
|
||||
resumes playback (on a device)
|
||||
</li>
|
||||
<li>
|
||||
<i>seekToPosition <position></i><br>
|
||||
@ -1218,8 +1219,8 @@ sub Spotify_isDisabled($) {
|
||||
setzt den Wiederholungsmodus: entweder <i>one</i>, <i>all</i> (Playlist, Album, Künstler) oder <i>off</i>
|
||||
</li>
|
||||
<li>
|
||||
<i>resume</i><br>
|
||||
fährt mit der Wiedergabe fort
|
||||
<i>resume [ <device_id / device_name> ]</i><br>
|
||||
fährt mit der Wiedergabe (auf einem Gerät) fort
|
||||
</li>
|
||||
<li>
|
||||
<i>seekToPosition <position></i><br>
|
||||
|
Loading…
x
Reference in New Issue
Block a user