https://github.com/daneah/denon
A partial, flexible, browser-based implementation of the Denon AVR Control Protocol in Django + Vue.js
https://github.com/daneah/denon
denon-avr django home-automation vue
Last synced: 19 days ago
JSON representation
A partial, flexible, browser-based implementation of the Denon AVR Control Protocol in Django + Vue.js
- Host: GitHub
- URL: https://github.com/daneah/denon
- Owner: daneah
- License: mit
- Created: 2018-08-17T16:01:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T11:26:43.000Z (9 months ago)
- Last Synced: 2024-08-28T12:32:18.167Z (9 months ago)
- Topics: denon-avr, django, home-automation, vue
- Language: Python
- Homepage:
- Size: 896 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# denon
A partial, flexible, browser-based implementation of the [Denon AVR Control Protocol](https://usa.denon.com/us/product/hometheater/receivers/avr3808ci?docname=AVR-3808CISerialProtocol_Ver520a.pdf) in Django + Vue.js

## Installation
```shell
$ git clone [email protected]:daneah/denon.git
$ cd denon/
$ pipenv install
$ cat << EOF > .env
SECRET_KEY=denon
DEBUG=TRUE
DENON_IP_ADDRESS=
EOF
$ pipenv run ./manage.py migrate
$ pipenv run ./manage.py createsuperuser
$ cd frontend/
$ npm install
```## Running
In one window:
```shell
$ pipenv run ./manage.py runserver
```In another window:
```shell
$ cd frontend
$ npm run serve
```## Using
Visit http://localhost:8080 to see the interface.
To add commands and parameters that are supported by your DENON,
go to http://localhost:8000/admin.Commands and parameters can select an icon from the [free Font Awesome gallery](https://fontawesome.com/icons?d=gallery&m=free).
## Coming eventually
* Dockerfile and Kubernetes YAML file as a "quickstart" option.
* Live status of commands that support it, such as Mute and Power.## For discussion
* The application sometimes chokes trying to connect to a Denon for status queries (`MV?`, `PW?`, etc). Why?
* How best to model and present commands that have binary/opposing parameters, e.g. ON/OFF or an array of input sources?