我想创建一个组,并根据设备名称为其指定一个协调器。
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
非常感谢任何帮助。
由于