-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Denon Binding
This binding supports Denon AV receivers. It is available from openHAB 1.7.0 onwards. It should be compatible with previous generation receivers (AVR-X2000/X3000 etc) as well as the current ones (X2100W/X3100W).
The binding seems to work with some Marantz receivers too.
# denon:<instance>.<property>=value
# IP adress of the Denon receiver instance
denon:avr2000.host=192.168.1.70
# 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
#denon:avr2000.update=telnet
# Optional, this sets the refresh interval (in milliseconds) for all instances
# if you're using the http connection method. Default = 5000
#denon:refresh=5000
All items use the following format:
{denon="instance#<property>"}
Property | Type | Description | Accepts |
---|---|---|---|
General | |||
PW | Switch | Main power | On, Off |
ZM | Switch | Main zone power | On, Off |
Z2 | Switch | Zone 2 power | On, Off |
SURROUNDMODE | String | Current surround mode | Read only |
Volume | |||
MV | Dimmer | Main volume | Percent, Increase/Decrease |
MU | Switch | Mute | On, Off |
Z2ZV | Dimmer | Zone 2 volume | Percent, Increase/Decrease |
Z2MU | Switch | Zone 2 mute | On, Off |
Input | |||
INPUT | String | Select main input | Input name |
SICD | Switch | Switch main input to CD | On |
SITV | Switch | Switch main input to TV | On |
Z2SOURCE | Switch | Switch zone 2 input to source | On |
Z2TUNER | Switch | Switch zone 2 input to tuner | On |
Now playing | |||
TRACK | String | Current track that is playing, only available when playing something from network or USB. | Read only |
ARTIST | String | Current artist | Read only |
ALBUM | String | Current album | Read only |
Input mode names are different for different models. Check your control protocol documentation for the right values. The input mode switch commands in this table are not complete. The binding supports al SI* and Z2* commands.
The inputs for main and 2nd zone can be switched by sending ON command to the corresponding switch. The main input can also be switched by setting the INPUT property to the input name (without SI, see examples).
All zone commands also work on Zone 3 and Zone 4, if your receiver supports this (Z2MU -> Z3MU, etc.).
A lot of other commands can also be sent. Define them as a Switch item and send the ON command. There is no feedback on their state however. See the control protocol documentation for a list of commands.
There is special property 'COMMAND' that forwards all Denon commands that are sent to it:
String DenonCommand "Command" {denon="avr2000#COMMAND"}
This can be used in sitemaps:
Switch item=DenonCommand label="Surround Mode" mappings=[MSSTANDARD="Standard", MSSTEREO="Stereo"]
And scripts:
sendCommand(DenonCommand, "MNMEN ON")
- AVR-X2000/E400
- AVR-X4000
- AVR-3311CI/AVR-3311/AVR-991
- CEOL Piccolo DRA-N5/RCD-N8
- Marantz Control Protocol (2014+)
Items
Switch DenonPower "Power" {denon="avr2000#PW"}
Switch DenonMainZone "Main Zone" {denon="avr2000#ZM"}
Dimmer DenonVolume "Volume [%.1f]" {denon="avr2000#MV"}
Switch DenonMute "Mute" {denon="avr2000#MU"}
String DenonSurroundMode "Surround mode [%s]" {denon="avr2000#SURROUNDMODE"}
String DenonCommand "Command" {denon="avr2000#COMMAND", autoupdate=false}
String DenonCurrentTrack "Current track [%s]" {denon="avr2000#TRACK"}
String DenonCurrentArtist "Current artist [%s]" {denon="avr2000#ARTIST"}
String DenonCurrentAlbum "Current album [%s]" {denon="avr2000#ALBUM"}
String DenonInput "Input [%s]" {denon="avr2000#INPUT"}
Switch DenonInputCD "Input CD" {denon="avr2000#SICD"}
Switch DenonInputUSBIPOD "Input USB/IPOD" {denon="avr2000#SIUSB/IPOD"}
Switch DenonInputNet "Input Network" {denon="avr2000#SINET"}
Switch DenonInputSpotify "Input Spotify" {denon="avr2000#SISPOTIFY"}
Switch DenonInputTuner "Input Tuner" {denon="avr2000#SITUNER"}
Switch DenonInputDVD "Input DVD" {denon="avr2000#SIDVD"}
Switch DenonInputBluray "Input Bluray" {denon="avr2000#SIBD"}
Switch DenonInputTV "Input TV" {denon="avr2000#SITV"}
Switch DenonInputSATCBL "Input SAT/CBL" {denon="avr2000#SISAT/CBL"}
Switch DenonInputMplay "Input Mediaplayer" {denon="avr2000#SIMPLAY"}
Switch DenonInputGame "Input Game" {denon="avr2000#SIGAME"}
Switch DenonInputAux1 "Input Aux1" {denon="avr2000#SIAUX1"}
Switch DenonZoneTwo "Zone 2" {denon="avr2000#Z2"}
Dimmer DenonZoneTwoVolume "Volume [%.1f]" {denon="avr2000#Z2ZV"}
Switch DenonZoneTwoMute "Zone 2 Mute" {denon="avr2000#Z2MU"}
Switch DenonZoneTwoInputSource "Zone 2 Input Source" {denon="avr2000#Z2SOURCE"}
Switch DenonZoneTwoInputUSB "Zone 2 Input USB" {denon="avr2000#Z2USB/IPOD"}
Switch DenonZoneTwoInputTuner "Zone 2 Tuner" {denon="avr2000#Z2TUNER"}
Sitemap
Frame label="Main Zone" {
Switch item=DenonPower
Switch item=DenonMainZone
Slider item=DenonVolume
Setpoint item=DenonVolume minValue=0 maxValue=100 step=0.5
Switch item=DenonMute
Switch item=DenonCommand label="Surround Mode" mappings=[MSSTANDARD="Standard", MSSTEREO="Stereo"]
Text item=DenonSurroundMode
}
Frame label="Main Zone Input" {
Selection label="Input" item=DenonInput mappings=[CD="CD", TUNER="Tuner", DVD="DVD", BD="Bluray", TV="TV", "SAT/CBL"="SAT/CBL", MPLAY="Mediaplayer", GAME="Game", AUX1="Aux1"]
Text item=DenonInput
Switch item=DenonInputCD mappings=[ON="CD"]
Switch item=DenonInputTuner mappings=[ON="Tuner"]
Switch item=DenonInputDVD mappings=[ON="DVD"]
Switch item=DenonInputBluray mappings=[ON="Bluray"]
Switch item=DenonInputTV mappings=[ON="TV"]
Switch item=DenonInputSATCBL mappings=[ON="SAT/CBL"]
Switch item=DenonInputMplay mappings=[ON="Mediaplayer"]
Switch item=DenonInputGame mappings=[ON="Game"]
Switch item=DenonInputAux1 mappings=[ON="Aux1"]
}
Frame label="Title Info" visibility=[DenonCurrentTrack!="Undefined",DenonCurrentArtist!="Undefined"] {
Text item=DenonCurrentTrack
Text item=DenonCurrentArtist
Text item=DenonCurrentAlbum
Webview url="http://192.168.1.70/NetAudio/art.asp-jpg" height=9
}
Frame label="Zone 2" {
Switch item=DenonZoneTwo
Switch item=DenonZoneTwoMute
Slider item=DenonZoneTwoVolume
Switch item=DenonZoneTwoInputUSB mappings=[ON="USB"]
Switch item=DenonZoneTwoInputSource mappings=[ON="Source"]
Switch item=DenonZoneTwoInputTuner mappings=[ON="Tuner"]
}
ℹ Please find all documentation for openHAB 2 under http://docs.openhab.org.
The wiki pages here contain (outdated) documentation for the older openHAB 1.x version. Please be aware that a lot of core details changed with openHAB 2.0 and this wiki as well as all tutorials found for openHAB 1.x might be misleading. Check http://docs.openhab.org for more details and consult the community forum for all remaining questions.
- Classic UI
- iOS Client
- Android Client
- Windows Phone Client
- GreenT UI
- CometVisu
- Kodi
- Chrome Extension
- Alfred Workflow
- Cosm Persistence
- db4o Persistence
- Amazon DynamoDB Persistence
- Exec Persistence
- Google Calendar Presence Simulator
- InfluxDB Persistence
- JDBC Persistence
- JPA Persistence
- Logging Persistence
- mapdb Persistence
- MongoDB Persistence
- MQTT Persistence
- my.openHAB Persistence
- MySQL Persistence
- rrd4j Persistence
- Sen.Se Persistence
- SiteWhere Persistence
- AKM868 Binding
- AlarmDecoder Binding
- Anel Binding
- Arduino SmartHome Souliss Binding
- Asterisk Binding
- Astro Binding
- Autelis Pool Control Binding
- BenQ Projector Binding
- Bluetooth Binding
- Bticino Binding
- CalDAV Binding
- Chamberlain MyQ Binding
- Comfo Air Binding
- Config Admin Binding
- CUL Transport
- CUL Intertechno Binding
- CUPS Binding
- DAIKIN Binding
- Davis Binding
- DD-WRT Binding
- Denon Binding
- digitalSTROM Binding
- DIY on XBee Binding
- DMX512 Binding
- DSC Alarm Binding
- DSMR Binding
- eBUS Binding
- Ecobee Binding
- EDS OWSever Binding
- eKey Binding
- Energenie Binding
- EnOcean Binding
- Enphase Energy Binding
- Epson Projector Binding
- Exec Binding
- Expire Binding
- Fatek PLC Binding
- Freebox Binding
- Freeswitch Binding
- Frontier Silicon Radio Binding
- Fritz AHA Binding
- Fritz!Box Binding
- FritzBox-TR064-Binding
- FS20 Binding
- Garadget Binding
- Global Caché IR Binding
- GPIO Binding
- HAI/Leviton OmniLink Binding
- HDAnywhere Binding
- Heatmiser Binding
- Homematic / Homegear Binding
- Horizon Mediabox Binding
- HTTP Binding
- IEC 62056-21 Binding
- IHC / ELKO Binding
- ImperiHome Binding
- Insteon Hub Binding
- Insteon PLM Binding
- IPX800 Binding
- IRtrans Binding
- jointSPACE-Binding
- KM200 Binding
- KNX Binding
- Koubachi Binding
- LCN Binding
- LightwaveRF Binding
- Leviton/HAI Omnilink Binding
- Lg TV Binding
- Logitech Harmony Hub
- MailControl Binding
- MAX!Cube-Binding
- MAX! CUL Binding
- MCP23017 I/O Expander Binding
- MCP3424 ADC Binding
- MiLight Binding
- MiOS Binding
- Mochad X10 Binding
- Modbus Binding
- MPD Binding
- MQTT Binding
- MQTTitude binding
- MystromEcoPower Binding
- Neohub Binding
- Nest Binding
- Netatmo Binding
- Network Health Binding
- Network UPS Tools Binding
- Nibe Heatpump Binding
- Nikobus Binding
- Novelan/Luxtronic Heatpump Binding
- NTP Binding
- One-Wire Binding
- Onkyo AV Receiver Binding
- Open Energy Monitor Binding
- OpenPaths presence detection binding
- OpenSprinkler Binding
- OSGi Configuration Admin Binding
- Panasonic TV Binding
- panStamp Binding
- Philips Hue Binding
- Picnet Binding
- Piface Binding
- PiXtend Binding
- pilight Binding
- Pioneer-AVR-Binding
- Plex Binding
- Plugwise Binding
- PLCBus Binding
- PowerDog Local API Binding
- Powermax alarm Binding
- Primare Binding
- Pulseaudio Binding
- Raspberry Pi RC Switch Binding
- RFXCOM Binding
- RWE Smarthome Binding
- Sager WeatherCaster Binding
- Samsung AC Binding
- Samsung TV Binding
- Serial Binding
- Sallegra Binding
- Satel Alarm Binding
- Siemens Logo! Binding
- SimpleBinary Binding
- Sinthesi Sapp Binding
- Smarthomatic Binding
- Snmp Binding
- Somfy URTSI II Binding
- Sonance Binding
- Sonos Binding
- Souliss Binding
- Squeezebox Binding
- Stiebel Eltron Heatpump
- Swegon ventilation Binding
- System Info Binding
- TA CMI Binding
- TCP/UDP Binding
- Tellstick Binding
- TinkerForge Binding
- Tivo Binding
- UCProjects.eu Relay Board Binding
- UPB Binding
- VDR Binding
- Velleman-K8055-Binding
- Wago Binding
- Wake-on-LAN Binding
- Waterkotte EcoTouch Heatpump Binding
- Weather Binding
- Wemo Binding
- Withings Binding
- XBMC Binding
- xPL Binding
- Yamahareceiver Binding
- Zibase Binding
- Z-Wave Binding
- Asterisk
- DoorBird
- FIND
- Foscam IP Cameras
- LG Hombot
- Worx Landroid
- Heatmiser PRT Thermostat
- Google Calendar
- Linux Media Players
- Osram Lightify
- Rainforest EAGLE Energy Access Gateway
- Roku Integration
- ROS Robot Operating System
- Slack
- Telldus Tellstick
- Zoneminder
- Wink Hub (rooted)
- Wink Monitoring
- openHAB Cloud Connector
- Google Calendar Scheduler
- Transformations
- XSLT
- JSON
- REST-API
- Security
- Service Discovery
- Voice Control
- BritishGasHive-Using-Ruby
- Dropbox Bundle
A good source of inspiration and tips from users gathered over the years. Be aware that things may have changed since they were written and some examples might not work correctly.
Please update the wiki if you do come across any out of date information.
- Rollershutter Bindings
- Squeezebox
- WAC Binding
- WebSolarLog
- Alarm Clock
- Convert Fahrenheit to Celsius
- The mother of all lighting rules
- Reusable Rules via Functions
- Combining different Items
- Items, Rules and more Examples of a SmartHome
- Google Map
- Controlling openHAB with Android
- Usecase examples
- B-Control Manager
- Spell checking for foreign languages
- Flic via Tasker
- Chromecast via castnow
- Speedtest.net integration