我想创建一个组并根据设备名称为其指定一个协调器。
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
这样做的原因是我想以编程方式在厨房(并且只有厨房)中播放特定歌曲,但该设备已经是组的一部分并且不是协调器。因此,我收到以下错误:
The method or property "play_uri" can only be called/used on the coordinator in a group
任何帮助将不胜感激。
谢谢