Page 1 of 1

Denon Heos plugin

PostPosted: Thu Dec 15, 2016 11:56 am
by blysik
Anyone looking for a new plugin idea? I have Denon Heos speakers, and would love to control them Indigo.

Here's a link to the Domoticz hardware library for them: https://github.com/domoticz/domoticz/bl ... e/HEOS.cpp

Another link to a python library that seems to mostly work in general: https://github.com/easink/heos

I use easink/heos to make some really basic scripts to do some stuff. Like the following:

Code: Select all
#!/usr/local/bin/python3

from heos.heos import *
host = '192.168.55.176'
heos = Heos(host,True)
pid = -3336210
heos._player_id = pid
heos.play()
heos.close()


My python and coding skills are pretty bad though.

Re: Denon Heos plugin

PostPosted: Thu Dec 15, 2016 1:24 pm
by Colorado4Wheeler
Based on the sample API you posted it would be a 5 minute plugin to write. I would offer to write it but I don' t have one of those and I would be flying in the blind. I've done that for a few other products that people have requested and it's a pain in the butt to code against something you don't own.

Re: Denon Heos plugin

PostPosted: Wed Apr 26, 2017 5:02 am
by peppop
If someone is willing to write a plug-in for HEOS speakers and that HEOS Drive I will send them a HEOS speaker.

Re: Denon Heos plugin

PostPosted: Mon Jun 05, 2017 5:49 pm
by blysik
I'll chip in and send said person a speaker also. :)

Re: Denon Heos plugin

PostPosted: Mon Jun 12, 2017 2:35 pm
by blysik
I went ahead and wrote a basic plugin for Denon Heos speakers.

viewtopic.php?f=134&t=18517&p=139834&hilit=heos#p139834