Skip to main content

Control a serial Denon AVR interface over IP

Project description

Python Library for Denon AVR Serial over IP Control

PyPI GitHub issues GitHub forks GitHub stars GitHub license Twitter

Description

Connects to an older Denon AVR serial port using an IP to Serial convertor

Note

This is in no way affiliated with Denon.

Issues

I don't have access to a Denon AMP any more directly - so most of this is from old Protocol documentation

Logging / Debugging

This library uses logging just set the log level and format you need.

Example

The examples below may look a little complex - because this library relies on functions like .connect() need to be awaited.

Connect and turn on Zone 2

import asyncio
from denon_avr_serial_over_ip import DenonAVR

api = DenonAVR(
        host=10.10.10.10,
        longitude=5001,
    )

async def zone_change(zone):
    """Alert about a zone change"""
    _LOGGER.info("Zone %s changed", zone.zone_number)

async def connect_turn_on_z2():
    await API.connect()
    API.zone2.subscribe(zone_change)
    await asyncio.sleep(2)
    await API.zone2.turn_on()
    await asyncio.sleep(2)
    await API.zone2.set_volume_level(0.5)
    await asyncio.sleep(2)
    await API.turn_off()

asyncio.get_event_loop().run_until_complete(connect_turn_on_z2())

Support

Buy Me A Coffee

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

denon-avr-serial-over-ip-0.0.5.tar.gz (609.3 kB view hashes)

Uploaded Source

Built Distribution

denon_avr_serial_over_ip-0.0.5-py2.py3-none-any.whl (13.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page