NEWS
Bluesound Node 2i
-
Hallo zusammen,
ich habe mir einen High End Musik Streamer von Bluesound gekauft. Diesen würde ich ganz gerne via IoBroker steuern, ähnlich wie Sonos. Hat das jemand schon einmal umgesetzt und könnte mir helfen?
Besten Dank und Gruss
Geb
-
Genau danach suche ich auch gerade, nachdem ich mir den Powernode 2 gegönnt habe. Wäre Klasse, wenn es da was gäbe
-
Hi zurück
leider habe ich auch keinen Adapter für Bluos. Aber es gibt eine http API. Bis dato benutze ich diese ganz rudimentär für die Preset Steuerung, da ich selber auch kein js Programmierer bin.
createState("Button.Preset1", false, { // Neuer Datenpunkt zum Betätigen in VIS read: true, write: true, desc: "Stream 1 starten", type: "boolean", def: false }); on({id: "javascript.0.Button.Preset1", val: true}, function(dp) { var url = "http://192.168.101.107:11000/Preset?id=1"; request(url); setState(dp.id, false); });
Es gibt im Bluesound Forum einen kleinen Thread über die API: https://helpdesk.bluesound.com/discussions/viewtopic.php?t=2293
Vielleicht kann man darauf aufbauend einen Adatper basteln.Gruß und guten Rutsch
Robert
-
I made an adapter for bluesound devices. I myself own a Node 2i and am able to control it via Vis and the adapter.
The adapter is available in https://github.com/Uwe1958/ioBroker.bluesound
You could try it and give feedback if this is of interest to you or if you have issues/suggestions.
Best regards
-
@uwe1958 Hi Uwe,
we have talked one or two years beforeWith the big assistance of Liv-in-the-Sky, we were able to create some JS to browse the library, select and play with a Bluesound device via the VIS. I'm not really a programming specialist. But we have created this kind of working Bluesound player:
I still have your adapter in Version 0.12 installed, but it is disabled.
I will check out the new version...
-