如何使用SoCo(python)创建新组?

时间:2016-10-28 04:19:29

标签: python sonos

我想创建一个组,并根据设备名称为其指定一个协调器。

import soco


devices = soco.discover()

for device in devices:
    if device.player_name == 'Kitchen'
        # Define a new group with a coordinator here...
        # device.group...
        break

原因是我想以编程方式在Kitchen中播放一首特定的歌曲(而且只有Kitchen),但该设备已经是群组的一部分而不是协调员。因此我收到以下错误:

The method or property "play_uri" can only be called/used on the coordinator in a group

非常感谢任何帮助。

由于

0 个答案:

没有答案