-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7567fe6
commit 1397e3d
Showing
15 changed files
with
498 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
Denon Remote | ||
============ | ||
|
||
Control Denon Professional DN-500AV surround preamplifier remotely. | ||
|
||
![Screenshot](screenshot-v0.3.0.png) | ||
|
||
Author: Raphael Doursenaud <[email protected]> | ||
|
@@ -9,9 +11,10 @@ License: [GPLv3+](LICENSE) | |
|
||
Language: [Python](https://python.org) 3 | ||
|
||
Dependencies: | ||
Fonts used: | ||
|
||
- [Unicode Power Symbol](https://unicodepowersymbol.com/) Copyright (c) 2013 Joe Loughry licensed under MIT | ||
- [Free Serif](https://savannah.gnu.org/projects/freefont/) licensed under GPLv3 | ||
|
||
### Features | ||
|
||
|
@@ -41,7 +44,7 @@ Dependencies: | |
|
||
#### Controls | ||
|
||
- [ ] Setup | ||
- [x] Setup | ||
- [x] IP address | ||
- [ ] Serial port? | ||
- [ ] COM (Windows) | ||
|
@@ -83,6 +86,7 @@ Dependencies: | |
- [ ] Left/Right VolPreset +/- | ||
- [ ] PgUp/PgDwn SrcPreset +/- | ||
- [x] Systray/Taskbar support using [pystray](https://pypi.org/project/pystray/) | ||
- [ ] Only one instance should be allowed | ||
|
||
##### Windows executable | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
import kivy.config | ||
from twisted.internet import reactor | ||
|
||
from config import RECEIVER_IP, RECEIVER_PORT | ||
from denon.communication import DenonClientFactory | ||
|
||
|
||
class DenonRemoteApp: | ||
def run(self): | ||
reactor.connectTCP(RECEIVER_IP, RECEIVER_PORT, DenonClientFactory()) | ||
# Get from config | ||
# FIXME: or get from arguments | ||
receiver_ip = kivy.config.Config.get('denonremote', 'receiver_ip') | ||
receiver_port = kivy.config.Config.get('denonremote', 'receiver_port') | ||
|
||
reactor.connectTCP(receiver_ip, receiver_port, DenonClientFactory()) | ||
reactor.run() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.