Denon Binding does not appear after installation

Hello guys,

i’m new with OH2 but i got 2 z-wave devices to work and now i want to include also my denon avr3312 Reciever.
I installed the denon binding (binding-denon1 - 1.9.0) and the denon config under services includes:

denon:avr3312.host=192.168.2.108
denon:avr3312.update=http
refresh=2000

log shows only:

2017-02-21 14:39:08.386 [WARN ] [url.mvn.internal.AetherBasedResolver] - Error resolving artifact org.openhab.binding:org.openhab.binding.denon:jar:1.9.0: [Could not transfer artifact org.openhab.binding:org.openhab.binding.denon:jar:1.9.0 from/to openhab (https://dl.bintray.com/openhab/mvn/online-repo/2.0/): Read timed out]
java.io.IOException: Error resolving artifact org.openhab.binding:org.openhab.binding.denon:jar:1.9.0: [Could not transfer artifact org.openhab.binding:org.openhab.binding.denon:jar:1.9.0 from/to openhab (https://dl.bintray.com/openhab/mvn/online-repo/2.0/): Read timed out]

and events shows:

2017-02-21 14:40:13.328 [ExtensionEvent            ] - Extension 'binding-denon1' has been installed.

any hints?

ty guys!

It looks like the binding is successfully installed. Because it is a 1.x binding, your next step will be to create a .items file such as denon.items and put it in the conf/items/ folder.

Here is a sample of my file to help you along:

Switch DenonPower           "Marantz 7005 Power"          <receiver>      (ALL,AVR,bs,bsA)        {denon="sr7005#PW"}
Switch DenonMute            "sr7005 Mute [%s]"            <receiver>      (ALL,AVR)               {denon="sr7005#MU"}
String DenonSurround        "sr7005 Surround Mode [%s]"	  <receiver>      (ALL,AVR)               {denon="sr7005#SURROUNDMODE"}
String DenonTrack	    "sr7005 Track playing [%s]"   <receiver>      (ALL,AVR)               {denon="sr7005#TRACK"}
Dimmer DenonVolume          "sr7005 Volume [%.1f]"        <receiver>      (ALL,AVR)               {denon="sr7005#MV"}
String DenonInput           "sr7005 Input [%s]"           <receiver>      (ALL,AVR)               {denon="sr7005#INPUT"}

The full list of commands is in the Denon binding documentation here: Denon 1.x binding

Thank you a lot! It’s working.
And the link to the documentaion is like a charm!

Hi!
I have the same problem, there is no binding in PaperUI.
I generated a denon.item and a denon.sitemap file and filled them with the provided examples.
There is till no control panel anywhere :confused:

denon.cfg

#<instance>.<property>=value

# IP adress of the Denon receiver instance
avr3312.host=192.168.1.17

# Optional, set connection method for receiving updates. Can be http or telnet. 
# Denon receivers only support one concurrent telnet connection, so use http if 
# you have any other app using the telnet connection. Default = telnet
avr3312.update=http

# Optional, this sets the refresh interval (in milliseconds) for all instances 
# if you're using the http connection method. Default = 5000 
#refresh=5000

a minimized items file for testing

Switch DenonPower "Power" {denon="avr3312#PW"}

sitemap

sitemap Denon label="Denon AVR"{
	Frame label="Main Zone" {
		Switch item=DenonPower
	}
}