Page 1 of 1

Plugin for Bluesound

PostPosted: Sun Oct 29, 2017 5:39 am
by indigo2200
Has anyone considered making a script/plugin for the multiroom hifi soundsystem BLUESOUND? A few searches have made me to believe its not so difficult: https://helpdesk.bluesound.com/discussi ... php?t=2293

Seems that if you execute certain HTTP commands through port 11000 then you can start stop the music etc. There might even be an Indigo plug in capable of doing so?!

Re: Plugin for Bluesound

PostPosted: Sun Oct 29, 2017 12:31 pm
by outsidenwnc
I would be interested however not much of a programmer.

I have 5 of these little power houses andthey are awesome.

Re: Plugin for Bluesound

PostPosted: Mon Oct 30, 2017 10:42 am
by jay (support)
Yeah, a plugin would be great. Fortunately, for the simple commands you can write a 2 line Python script:

Code: Select all
import requests
requests.get("http://192.168.1.38:11000/Pause")


Untested because I don't have one of those devices, but that URL is from the above linked form post on the bluesound discussion board so it should work. You would, of course, need to replace the IP address with the one for your device.