This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

SONOS app
Hi

Here is how to use new Sonos app via script:

The app runs a daemon which keeps communication with each player/group The daemon will be closed down after 120s if no update is send so we need to run such script every 60s to keep communication up and running.
Code:
require('custom.sonos.lib')

groupID=sonos_app.GetStoragePlayerGroups()
for k, v in pairs(groupID) do
   sonos_app.SendApiActionCommand(k, 'watchPlayerGroup', os.time())
end

To control the players we need to know groupID which can be read via such command.
Code:
groupID=sonos_app.GetStoragePlayerGroups()

Basic control is done like this
Code:
-- simle command: play, pause, skipToPrev, skipToNext
sonos_app.SendApiActionCommand(url_group_id, 'play')
Code:
-- set volume
sonos_app.SendApiActionCommand(url_group_id, 'setVolume', 50)

The url_group_id is in the table from the groupID but it can be read automatically when we know group name so example start/pause script would looks like that.
Code:
require('custom.sonos.lib')

groupName='Kitchen'

-------------------------------------------------------------
groupID=sonos_app.GetStoragePlayerGroups()
for k, v in pairs(sonos_app.GetStoragePlayerGroups()) do
  if groupID[k].groupName == groupName then
  groupID=k 
    break
  end
end
-------------------------------------------------------------

value = event.getvalue()
if value then
    sonos_app.SendApiActionCommand(groupID, 'play')
else
  sonos_app.SendApiActionCommand(groupID, 'pause')
end

To read Playlist table use this
Code:
sonos_app.GetStoragePlayerGroupData(groupID, 'Playlists')

To Play a playlist
Code:
-- play playlist by ID
sonos_app.SendApiActionCommand(url_group_id, 'playPlaylist', playlist_id)
playlist_id looks like a number but it is a string!

To read Favorites use
Code:
sonos_app.GetStoragePlayerGroupData(groupID, 'Favorites')

To play a Favorites
Code:
sonos_app.SendApiActionCommand(url_groupID, 'playFavorite', url_favID)
------------------------------
Ctrl+F5
Reply


Messages In This Thread
SONOS app - by edgars - 07.10.2016, 09:28
RE: SONOS app - by FatMax - 07.10.2016, 12:24
RE: SONOS app - by Erwin van der Zwart - 07.10.2016, 12:59
RE: SONOS app - by andeug - 09.10.2016, 17:33
RE: SONOS app - by rocfusion - 10.10.2016, 18:03
RE: SONOS app - by Erwin van der Zwart - 10.10.2016, 19:59
RE: SONOS app - by rocfusion - 11.10.2016, 00:26
RE: SONOS app - by Erwin van der Zwart - 11.10.2016, 09:29
RE: SONOS app - by Erwin van der Zwart - 13.10.2016, 20:28
RE: SONOS app - by andeug - 11.10.2016, 08:18
RE: SONOS app - by andeug - 11.10.2016, 10:05
RE: SONOS app - by andeug - 19.10.2016, 07:44
RE: SONOS app - by Erwin van der Zwart - 19.10.2016, 09:51
RE: SONOS app - by kythas100 - 18.08.2017, 12:08
RE: SONOS app - by kythas100 - 29.08.2017, 10:16
RE: SONOS app - by Erwin van der Zwart - 29.08.2017, 10:58
RE: SONOS app - by kythas100 - 31.08.2017, 13:02
RE: SONOS app - by kythas100 - 05.09.2017, 09:53
SONOS app - by Erwin van der Zwart - 21.10.2016, 17:51
RE: SONOS app - by andeug - 21.10.2016, 18:04
RE: SONOS app - by Erwin van der Zwart - 21.10.2016, 19:06
RE: SONOS app - by andeug - 21.10.2016, 22:32
RE: SONOS app - by Erwin van der Zwart - 22.10.2016, 09:00
RE: SONOS app - by Erwin van der Zwart - 25.10.2016, 13:32
RE: SONOS app - by andeug - 25.10.2016, 13:49
RE: SONOS app - by Erwin van der Zwart - 25.10.2016, 14:25
RE: SONOS app - by andeug - 25.10.2016, 15:08
RE: SONOS app - by Erwin van der Zwart - 25.10.2016, 16:06
RE: SONOS app - by Erwin van der Zwart - 25.10.2016, 18:55
RE: SONOS app - by Erwin van der Zwart - 25.10.2016, 23:13
RE: SONOS app - by PassivPluss - 26.10.2016, 23:36
RE: SONOS app - by andeug - 26.10.2016, 23:51
RE: SONOS app - by andeug - 03.11.2016, 00:06
RE: SONOS app - by Erwin van der Zwart - 04.11.2016, 13:48
RE: SONOS app - by Erwin van der Zwart - 04.11.2016, 16:54
RE: SONOS app - by andeug - 04.11.2016, 14:07
RE: SONOS app - by andeug - 04.11.2016, 22:15
RE: SONOS app - by bmodeco - 13.01.2017, 08:35
RE: SONOS app - by Erwin van der Zwart - 13.01.2017, 16:52
RE: SONOS app - by bmodeco - 14.01.2017, 07:20
RE: SONOS app - by Habib - 14.01.2017, 08:24
RE: SONOS app - by Erwin van der Zwart - 14.01.2017, 11:51
RE: SONOS app - by admin - 14.01.2017, 11:50
RE: SONOS app - by bmodeco - 14.01.2017, 12:41
RE: SONOS app - by admin - 14.01.2017, 11:52
RE: SONOS app - by Erwin van der Zwart - 14.01.2017, 12:49
RE: SONOS app - by bmodeco - 15.02.2017, 19:14
RE: SONOS app - by Erwin van der Zwart - 15.02.2017, 19:19
RE: SONOS app - by bmodeco - 15.02.2017, 19:27
RE: SONOS app - by bmodeco - 15.02.2017, 19:33
RE: SONOS app - by admin - 15.02.2017, 19:30
RE: SONOS app - by Erwin van der Zwart - 15.02.2017, 19:34
RE: SONOS app - by admin - 15.02.2017, 19:34
RE: SONOS app - by bmodeco - 15.02.2017, 19:38
RE: SONOS app - by josep - 23.02.2017, 15:36
RE: SONOS app - by Erwin van der Zwart - 23.02.2017, 23:05
RE: SONOS app - by josep - 24.02.2017, 09:04
RE: SONOS app - by Erwin van der Zwart - 24.02.2017, 09:26
RE: SONOS app - by josep - 24.02.2017, 10:31
RE: SONOS app - by admin - 24.02.2017, 10:38
RE: SONOS app - by josep - 24.02.2017, 12:11
RE: SONOS app - by josep - 24.02.2017, 14:07
RE: SONOS app - by Erwin van der Zwart - 24.02.2017, 14:11
RE: SONOS app - by josep - 24.02.2017, 14:26
RE: SONOS app - by Erwin van der Zwart - 25.02.2017, 09:28
RE: SONOS app - by josep - 25.02.2017, 11:30
RE: SONOS app - by Erwin van der Zwart - 25.02.2017, 12:01
RE: SONOS app - by josep - 25.02.2017, 18:58
RE: SONOS app - by Erwin van der Zwart - 25.02.2017, 19:12
RE: SONOS app - by bmodeco - 25.02.2017, 19:36
RE: SONOS app - by Erwin van der Zwart - 25.02.2017, 20:08
RE: SONOS app - by Erwin van der Zwart - 27.02.2017, 13:59
RE: SONOS app - by josep - 25.02.2017, 22:12
RE: SONOS app - by Erwin van der Zwart - 25.02.2017, 22:38
RE: SONOS app - by josep - 27.02.2017, 14:21
RE: SONOS app - by Erwin van der Zwart - 27.02.2017, 16:52
RE: SONOS app - by josep - 27.02.2017, 17:32
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 01:11
RE: SONOS app - by admin - 28.02.2017, 07:44
RE: SONOS app - by admin - 28.02.2017, 07:51
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 07:58
RE: SONOS app - by josep - 28.02.2017, 08:29
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 08:56
RE: SONOS app - by josep - 28.02.2017, 09:07
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 09:21
RE: SONOS app - by josep - 28.02.2017, 10:20
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 10:32
RE: SONOS app - by josep - 28.02.2017, 10:53
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 11:27
RE: SONOS app - by josep - 28.02.2017, 11:32
RE: SONOS app - by Erwin van der Zwart - 28.02.2017, 11:37
RE: SONOS app - by josep - 28.02.2017, 14:31
RE: SONOS app - by domotiqa - 06.04.2017, 07:59
RE: SONOS app - by Erwin van der Zwart - 06.04.2017, 14:09
RE: SONOS app - by domotiqa - 07.04.2017, 16:55
RE: SONOS app - by Mr.D - 01.05.2017, 19:11
RE: SONOS app - by Erwin van der Zwart - 01.05.2017, 19:16
RE: SONOS app - by Mr.D - 01.05.2017, 21:29
RE: SONOS app - by Erwin van der Zwart - 01.05.2017, 22:48
RE: SONOS app - by Mr.D - 02.05.2017, 20:38
RE: SONOS app - by rocfusion - 16.05.2017, 05:12
RE: SONOS app - by Erwin van der Zwart - 16.05.2017, 07:39
RE: SONOS app - by josep - 05.06.2017, 14:38
RE: SONOS app - by Erwin van der Zwart - 05.06.2017, 15:02
RE: SONOS app - by josep - 05.06.2017, 15:25
RE: SONOS app - by Erwin van der Zwart - 05.06.2017, 15:45
RE: SONOS app - by josep - 05.06.2017, 15:55
RE: SONOS app - by Erwin van der Zwart - 05.06.2017, 16:12
RE: SONOS app - by Mr.D - 21.06.2017, 15:49
RE: SONOS app - by Erwin van der Zwart - 21.06.2017, 15:59
RE: SONOS app - by Erwin van der Zwart - 21.07.2017, 15:27
RE: SONOS app - by Mr.D - 29.07.2017, 09:56
SONOS app - by Erwin van der Zwart - 30.07.2017, 07:23
RE: SONOS app - by Mr.D - 10.08.2017, 19:37
RE: SONOS app - by morak - 11.08.2017, 14:40
RE: SONOS app - by Hippolyte - 18.08.2017, 05:33
RE: SONOS app - by Erwin van der Zwart - 18.08.2017, 06:33
RE: SONOS app - by ivanposada - 18.08.2017, 10:42
RE: SONOS app - by Erwin van der Zwart - 18.08.2017, 11:02
RE: SONOS app - by ivanposada - 18.08.2017, 14:25
RE: SONOS app - by Erwin van der Zwart - 18.08.2017, 20:55
RE: SONOS app - by ivanposada - 19.08.2017, 12:25
RE: SONOS app - by admin - 18.08.2017, 10:52
SONOS app - by Erwin van der Zwart - 19.08.2017, 12:54
RE: SONOS app - by ivanposada - 19.08.2017, 20:21
RE: SONOS app - by Erwin van der Zwart - 19.08.2017, 22:10
RE: SONOS app - by ivanposada - 20.08.2017, 17:27
RE: SONOS app - by Erwin van der Zwart - 20.08.2017, 18:28
RE: SONOS app - by ivanposada - 20.08.2017, 20:42
RE: SONOS app - by Erwin van der Zwart - 21.08.2017, 08:21
RE: SONOS app - by ivanposada - 21.08.2017, 10:01
RE: SONOS app - by admin - 19.08.2017, 14:13
RE: SONOS app - by ivanposada - 29.08.2017, 09:34
RE: SONOS app - by Erwin van der Zwart - 29.08.2017, 09:45
RE: SONOS app - by ivanposada - 05.09.2017, 10:54
RE: SONOS app - by Erwin van der Zwart - 05.09.2017, 11:16
RE: SONOS app - by ivanposada - 05.09.2017, 13:30
RE: SONOS app - by Erwin van der Zwart - 05.09.2017, 13:47
RE: SONOS app - by Mr.D - 24.09.2017, 07:23
RE: SONOS app - by Erwin van der Zwart - 24.09.2017, 08:18
RE: SONOS app - by Mr.D - 24.09.2017, 08:45
RE: SONOS app - by Erwin van der Zwart - 24.09.2017, 09:19
RE: SONOS app - by Mr.D - 24.09.2017, 09:27
RE: SONOS app - by Erwin van der Zwart - 24.09.2017, 09:49
RE: SONOS app - by Mr.D - 27.01.2018, 12:33
RE: SONOS app - by Mr.D - 13.03.2018, 12:51
RE: SONOS app - by Mr.D - 24.09.2017, 09:59
RE: SONOS app - by Erwin van der Zwart - 24.09.2017, 10:04
RE: SONOS app - by Mr.D - 24.09.2017, 10:08
RE: SONOS app - by marc - 25.09.2017, 16:55
RE: SONOS app - by Erwin van der Zwart - 25.09.2017, 17:15
RE: SONOS app - by marc - 02.10.2017, 12:15
RE: SONOS app - by Erwin van der Zwart - 02.10.2017, 19:59
RE: SONOS app - by marc - 03.10.2017, 12:30
RE: SONOS app - by John94 - 25.10.2017, 13:16
RE: SONOS app - by Erwin van der Zwart - 25.10.2017, 13:28
RE: SONOS app - by John94 - 25.10.2017, 13:55
RE: SONOS app - by GenaV - 26.10.2017, 14:09
RE: SONOS app - by John94 - 30.10.2017, 14:49
RE: SONOS app - by Erwin van der Zwart - 31.10.2017, 20:40
RE: SONOS app - by galust - 07.11.2017, 13:57
RE: SONOS app - by Erwin van der Zwart - 07.11.2017, 16:16
RE: SONOS app - by galust - 07.11.2017, 16:20
RE: SONOS app - by John94 - 07.11.2017, 19:02
RE: SONOS app - by galust - 08.11.2017, 10:34
RE: SONOS app - by Erwin van der Zwart - 09.11.2017, 11:20
RE: SONOS app - by unaxboy - 21.11.2017, 21:46
RE: SONOS app - by unaxboy - 28.11.2017, 19:16
RE: SONOS app - by Erwin van der Zwart - 29.11.2017, 11:46
RE: SONOS app - by unaxboy - 29.11.2017, 12:45
RE: SONOS app - by Northwind - 23.11.2017, 10:35
RE: SONOS app - by balatis - 19.03.2018, 18:06
RE: SONOS app - by Daniel - 28.03.2018, 12:15
RE: SONOS app - by CHOUAIBOU - 28.03.2018, 13:18
RE: SONOS app - by Daniel - 28.03.2018, 13:40
RE: SONOS app - by Erwin van der Zwart - 28.03.2018, 17:22
RE: SONOS app - by balatis - 02.04.2018, 16:54
RE: SONOS app - by Erwin van der Zwart - 02.04.2018, 21:04
RE: SONOS app - by balatis - 05.04.2018, 11:51
RE: SONOS app - by balatis - 05.04.2018, 17:00
RE: SONOS app - by Erwin van der Zwart - 05.04.2018, 18:18
RE: SONOS app - by balatis - 05.04.2018, 18:52
RE: SONOS app - by Erwin van der Zwart - 05.04.2018, 20:04
RE: SONOS app - by balatis - 05.04.2018, 20:07
RE: SONOS app - by Erwin van der Zwart - 05.04.2018, 20:55
RE: SONOS app - by balatis - 05.04.2018, 22:16
RE: SONOS app - by admin - 06.04.2018, 06:37
RE: SONOS app - by balatis - 06.04.2018, 08:57
RE: SONOS app - by Daniel - 11.04.2018, 14:12
RE: SONOS app - by Mr.D - 04.05.2018, 09:35
RE: SONOS app - by balatis - 04.05.2018, 10:50
RE: SONOS app - by Erwin van der Zwart - 04.05.2018, 12:00
RE: SONOS app - by Mr.D - 04.05.2018, 12:08
RE: SONOS app - by Erwin van der Zwart - 04.05.2018, 12:09
RE: SONOS app - by Bitver - 23.05.2018, 11:05
RE: SONOS app - by Erwin van der Zwart - 23.05.2018, 20:42
Balance control on SONOS:AMP - by puntukas - 22.07.2018, 19:41
RE: SONOS app - by Jose - 06.08.2018, 12:10
RE: SONOS app - by Mr.D - 16.10.2018, 18:28
RE: SONOS app - by Erwin van der Zwart - 16.10.2018, 21:34
RE: SONOS app - by Daniel - 17.10.2018, 07:10
RE: SONOS app - by FatMax - 17.10.2018, 09:31
RE: SONOS app - by Daniel - 17.10.2018, 09:43
RE: SONOS app - by CHOUAIBOU - 20.10.2018, 06:04
RE: SONOS app - by Erwin van der Zwart - 20.10.2018, 07:23
RE: SONOS app - by CHOUAIBOU - 21.10.2018, 06:01
RE: SONOS app - by Mr.D - 01.11.2018, 18:44
RE: SONOS app - by Daniel - 01.11.2018, 18:48
RE: SONOS app - by Mr.D - 05.02.2019, 18:39
RE: SONOS app - by Erwin van der Zwart - 05.02.2019, 19:12
RE: SONOS app - by lenze90 - 22.02.2019, 16:39
RE: SONOS app - by Daniel - 22.02.2019, 16:43
RE: SONOS app - by lenze90 - 22.02.2019, 19:08
RE: SONOS app - by Erwin van der Zwart - 23.02.2019, 18:35
RE: SONOS app - by lenze90 - 24.02.2019, 13:39
RE: SONOS app - by Daniel - 25.02.2019, 09:20
RE: SONOS app - by Firechief - 15.03.2019, 16:03
RE: SONOS app - by Mr.D - 16.03.2019, 17:01
RE: SONOS app - by Erwin van der Zwart - 16.03.2019, 17:55
RE: SONOS app - by lenze90 - 17.03.2019, 14:16
RE: SONOS app - by Mr.D - 16.03.2019, 17:58
RE: SONOS app - by admin - 16.03.2019, 19:36
RE: SONOS app - by Erwin van der Zwart - 16.03.2019, 20:42
RE: SONOS app - by Evens - 16.03.2019, 22:59
RE: SONOS app - by Mr.D - 17.03.2019, 12:07
RE: SONOS app - by admin - 18.03.2019, 07:41
RE: SONOS app - by Daniel - 18.03.2019, 08:56
RE: SONOS app - by phongvucba - 01.04.2019, 10:42
RE: SONOS app - by admin - 01.04.2019, 11:17
RE: SONOS app - by phongvucba - 02.04.2019, 01:58
RE: SONOS app - by Daniel - 02.04.2019, 07:28
RE: SONOS app - by Kai-Roger - 24.04.2019, 13:41
RE: SONOS app - by Daniel - 24.04.2019, 13:47
RE: SONOS app - by Kai-Roger - 24.04.2019, 13:54
RE: SONOS app - by andeug - 01.05.2019, 12:12
RE: SONOS app - by Daniel - 01.05.2019, 14:09
RE: SONOS app - by andeug - 01.05.2019, 22:18
RE: SONOS app - by Daniel - 02.05.2019, 07:07
RE: SONOS app - by Bitver - 24.05.2019, 08:53
RE: SONOS app - by Daniel - 24.05.2019, 09:04
RE: SONOS app - by Kam - 13.06.2019, 12:47
RE: SONOS app - by admin - 13.06.2019, 13:00
RE: SONOS app - by Kam - 13.06.2019, 13:46
RE: SONOS app - by Daniel - 13.06.2019, 13:02
RE: SONOS app - by Kam - 14.06.2019, 09:38
RE: SONOS app - by Daniel - 14.06.2019, 10:21
RE: SONOS app - by Kam - 14.06.2019, 10:58
RE: SONOS app - by theodosiou - 17.06.2019, 15:54
RE: SONOS app - by Evens - 08.07.2019, 18:21
RE: SONOS app - by andeug - 21.07.2019, 10:06
RE: SONOS app - by Erwin van der Zwart - 21.07.2019, 11:11
RE: SONOS app - by thomasoppida - 01.08.2019, 05:20
RE: SONOS app - by Trond Hoyem - 27.05.2020, 11:21
RE: SONOS app - by Erwin van der Zwart - 27.05.2020, 11:53
RE: SONOS app - by Trond Hoyem - 27.05.2020, 12:14
RE: SONOS app - by admin - 01.08.2019, 06:05
RE: SONOS app - by thomasoppida - 01.08.2019, 06:14
RE: SONOS app - by admin - 01.08.2019, 06:18
RE: SONOS app - by Trond Hoyem - 13.01.2020, 11:32
RE: SONOS app - by thomasoppida - 01.08.2019, 14:48
RE: SONOS app - by Hippolyte - 09.09.2019, 11:45
RE: SONOS app - by Erwin van der Zwart - 10.09.2019, 21:47
RE: SONOS app - by Daniel - 11.09.2019, 07:47
RE: SONOS app - by Trond Hoyem - 06.10.2019, 13:09
RE: SONOS app - by Joep - 28.01.2023, 16:06
RE: SONOS app - by Hippolyte - 11.09.2019, 14:00
RE: SONOS app - by Daniel - 07.10.2019, 07:36
RE: SONOS app - by Daniel - 07.10.2019, 11:54
RE: SONOS app - by Trond Hoyem - 14.10.2019, 17:12
RE: SONOS app - by Igor68 - 26.10.2019, 04:28
RE: SONOS app - by Igor68 - 26.10.2019, 05:42
RE: SONOS app - by Erwin van der Zwart - 28.10.2019, 13:18
RE: SONOS app - by Igor68 - 28.10.2019, 14:12
RE: SONOS app - by Erwin van der Zwart - 28.10.2019, 15:42
RE: SONOS app - by Daniel - 28.10.2019, 08:18
RE: SONOS app - by Igor68 - 29.10.2019, 15:24
RE: SONOS app - by Erwin van der Zwart - 29.10.2019, 15:31
RE: SONOS app - by Igor68 - 29.10.2019, 16:02
RE: SONOS app - by Hippolyte - 09.12.2019, 15:19
RE: SONOS app - by Daniel - 09.12.2019, 18:11
RE: SONOS app - by Arnoud - 14.12.2019, 13:45
RE: SONOS app - by Daniel - 16.12.2019, 08:35
RE: SONOS app - by zuuper - 28.12.2019, 23:51
RE: SONOS app - by Daniel - 29.12.2019, 09:00
RE: SONOS app - by zuuper - 29.12.2019, 11:01
RE: SONOS app - by Daniel - 30.12.2019, 11:04
RE: SONOS app - by Trond Hoyem - 03.01.2020, 15:15
RE: SONOS app - by Daniel - 03.01.2020, 17:29
RE: SONOS app - by Daniel - 13.01.2020, 11:53
RE: SONOS app - by Trond Hoyem - 13.01.2020, 12:02
RE: SONOS app - by Hippolyte - 10.02.2020, 12:16
RE: SONOS app - by balatis - 19.03.2020, 22:09
RE: SONOS app - by Erwin van der Zwart - 19.03.2020, 22:14
RE: SONOS app - by balatis - 19.03.2020, 22:21
RE: SONOS app - by Erwin van der Zwart - 19.03.2020, 22:27
RE: SONOS app - by balatis - 19.03.2020, 22:39
RE: SONOS app - by victor.back - 11.04.2020, 15:43
RE: SONOS app - by Daniel - 27.05.2020, 13:44
RE: SONOS app - by Erwin van der Zwart - 27.05.2020, 22:30
RE: SONOS app - by Trond Hoyem - 28.05.2020, 06:26
RE: SONOS app - by Erwin van der Zwart - 28.05.2020, 06:52
RE: SONOS app - by Trond Hoyem - 28.05.2020, 07:51
RE: SONOS app - by Erwin van der Zwart - 28.05.2020, 10:14
RE: SONOS app - by Trond Hoyem - 28.05.2020, 10:31
RE: SONOS app - by Erwin van der Zwart - 28.05.2020, 11:05
RE: SONOS app - by Trond Hoyem - 28.05.2020, 11:11
RE: SONOS app - by admin - 28.05.2020, 11:10
RE: SONOS app - by admin - 28.05.2020, 11:30
RE: SONOS app - by Trond Hoyem - 28.05.2020, 11:51
RE: SONOS app - by Erwin van der Zwart - 29.05.2020, 09:55
RE: SONOS app - by Trond Hoyem - 02.06.2020, 08:05
RE: SONOS app - by Fabian - 01.06.2020, 09:25
RE: SONOS app - by Daniel - 01.06.2020, 09:28
RE: SONOS app - by Fabian - 01.06.2020, 09:35
RE: SONOS app - by Daniel - 03.06.2020, 07:40
RE: SONOS app - by Trond Hoyem - 05.06.2020, 13:17
RE: SONOS app - by Erwin van der Zwart - 05.06.2020, 14:46
RE: SONOS app - by Trond Hoyem - 29.06.2020, 06:43
RE: SONOS app - by Erwin van der Zwart - 29.06.2020, 14:06
RE: SONOS app - by Trond Hoyem - 30.06.2020, 08:00
RE: SONOS app - by Erwin van der Zwart - 30.06.2020, 11:54
RE: SONOS app - by Trond Hoyem - 30.06.2020, 14:33
RE: SONOS app - by Erwin van der Zwart - 30.06.2020, 22:40
RE: SONOS app - by Trond Hoyem - 01.07.2020, 06:16
RE: SONOS app - by MantasJ - 18.08.2020, 07:11
RE: SONOS app - by phongvucba - 09.04.2022, 02:42
RE: SONOS app - by twee_D - 24.02.2023, 11:01
RE: SONOS app - by Daniel - 24.02.2023, 11:06
RE: SONOS app - by twee_D - 24.02.2023, 17:18
RE: SONOS app - by Daniel - 24.02.2023, 17:30
RE: SONOS app - by twee_D - 24.02.2023, 18:29
RE: SONOS app - by KRIS DOCX - 28.12.2023, 14:52
RE: SONOS app - by twee_D - 13.03.2023, 11:34
RE: SONOS app - by Daniel - 13.03.2023, 11:41
RE: SONOS app - by victor.back - 01.08.2023, 07:29
RE: SONOS app - by Daniel - 01.08.2023, 07:31
RE: SONOS app - by Daniel - 29.12.2023, 10:39

Forum Jump: