Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details

If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.

Marantz/Denon Plugin Development

Questions and comments specific to a particular plugin should go here.
User avatar
zian
Site Admin
Posts: 569
Joined: Wed Jun 24, 2009 3:54 pm

Re: Marantz/Denon Plugin Development

Post by zian »

Howdy All, Guess who got "gifted" a Marantz sr7009.
Yup... me. Been twiddling around with it.

Been trying to use it's IP address and EG as well as Tasker to do stuff with it. To it.
Got mute and power working so far.

This page helped (for device commands)...
https://github.com/subutux/denonavr/blo ... points.txt

This helped me do the wget cmds in win10...
https://eternallybored.org/misc/wget/

Here are my first few EG actions to Un/Mute the Marantz if anyboday cares...

Code: Select all

<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="0.5.0-rc6">
    <Folder Name="Marantz" XML_Guid="{A07085E4-B4C4-406E-A2A8-3DBF354A3ABD}" Expanded="True">
        <Macro Name="Run Application: MuteOffMarantz.bat" XML_Guid="{1EFB2E71-4EC3-4661-A6C0-19B7E46C48C5}" Expanded="True">
            <Action XML_Guid="{AF16A16D-3EE9-4A6F-8DB9-EC84A3A22683}">
                System.Execute(u'"C:\\Program Files (x86)\\EventGhost\\MoveFiles\\wget.exe"', u'--quiet http://192.168.1.141/MainZone/index.put.asp?cmd0=PutVolumeMute%2Foff&amp;cmd1=aspMainZone_WebUpdateStatus%2F', 3, False, 2, u'', False, True, u'', False, False, False, True)
            </Action>
        </Macro>
        <Macro Name="Run Application: MuteOnMarantz.bat" XML_Guid="{1EFB2E71-4EC3-4661-A6C0-19B7E46C48C5}" Expanded="True">
            <Action XML_Guid="{AF16A16D-3EE9-4A6F-8DB9-EC84A3A22683}">
                System.Execute(u'"C:\\Program Files (x86)\\EventGhost\\MoveFiles\\wget.exe"', u'--quiet http://192.168.1.141/MainZone/index.put.asp?cmd0=PutVolumeMute%2Fon&amp;cmd1=aspMainZone_WebUpdateStatus%2F', 3, False, 2, u'', False, True, u'', False, True, False, True)
            </Action>
        </Macro>
    </Folder>
</EventGhost>
bat files like sooo...
Mute On..

Code: Select all

wget http://192.168.1.141/MainZone/index.put.asp?cmd0=PutVolumeMute%2Fon&cmd1=aspMainZone_WebUpdateStatus%2F
Mute Off...

Code: Select all

wget http://192.168.1.141/MainZone/index.put.asp?cmd0=PutVolumeMute%2Foff&cmd1=aspMainZone_WebUpdateStatus%2F
I love this shit.
All but for the Marantz dweebs re/moving/deleting nearly every old or useful web link resource that has been put up online over the past years/decades. They suck for that.
eventghost.net
Be there or be square.
User avatar
zian
Site Admin
Posts: 569
Joined: Wed Jun 24, 2009 3:54 pm

Re: Marantz/Denon Plugin Development

Post by zian »

kgschlosser wrote: Fri Jan 20, 2017 4:26 am Here is a newer version. I have incorporated a connection error retry. there is a 5 second delay between each retry. on it's 6th time it will error out completely. I think that 30 seconds should be enough time for the AVR to figure out what it's doing.

I have also added more to the debugging routine. this will now put any traceback information into that debug file as well as any in and out data from the echo clients
This is AWESOME Kev.
If only I had found/read it 7 hours ago.
lol
eventghost.net
Be there or be square.
Post Reply