meine
meine 🌒 - A CLI file manager and system utility built with Textual. It combines intuitive command parsing with rich t…
Automation Library for Denon AVR receivers.
git clone https://github.com/ol-iver/denonavr.gitol-iver/denonavrAutomation Library for Denon AVR receivers
Use pip:
$ pip install denonavr
or
$ pip install --use-wheel denonavr
asyncWriting async and await methods are outside the scope of the documentation. You can test async usage from the Python REPL. In a terminal run:
python3 -m asyncio
The asyncio library should automatically be imported in the REPL. Import the denonavr library and set up your receiver. If you know the IP address, enter it below replacing 192.168.1.119.
>>> import asyncio
>>> import denonavr
>>> d = denonavr.DenonAVR("192.168.1.119")
>>> await d.async_setup()
>>> await d.async_update()
>>> print(d.volume)
-36.5
In addition to retrieving the current device status via HTTP calls, denonavr library also has the ability to setup a task that will connect to the receiver via telnet on TCP port 23 and listen for real-time events to notify of status changes.
This provides instant updates via a callback when the device status changes. Receivers support only one active telnet connection.
>>> import asyncio
>>> import denonavr
>>> d = denonavr.DenonAVR("192.168.1.119")
>>> await d.async_setup()
>>> await d.async_telnet_connect()
>>> await d.async_update()
>>> def update_callback(zone, event, parameter):
>>>>>> print("Zone: " + zone + " Event: " + event + " Parameter: " + parameter)
>>> d.register_callback("ALL", update_callback)
>>> await d.async_power_on()
>>> await d.async_update()
>>> d.power
'ON'
>>> await d.async_power_off()
>>> await d.async_update()
>>> d.power
'OFF'
>>> d.input_func
'Tuner'
>>> await d.async_set_input_func("Phono")
>>> d.input_func
'Phono'
>>> await d.async_mute(True)
>>> await d.async_mute(False)
Other async methods available include:
d.async_bass_downd.async_bass_upd.async_treble_downd.async_treble_upd.async_volume_downd.async_volume_upd.async_set_volume(50)For a collection of HTTP calls for Denon receivers please have a look at the doc folder.
MIT
Home Assistant: https://github.com/home-assistant/home-assistant/
denonavr-cli: https://pypi.org/project/denonavr-cli/
more like this
meine 🌒 - A CLI file manager and system utility built with Textual. It combines intuitive command parsing with rich t…
Create and add progress bars, Office365 Files and Dropbox Paper papers by labels and link them to your Todoist tasks.
search projects, people, and tags