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.

Search found 8 matches

by SamWest
Tue Jul 29, 2014 11:03 am
Forum: Coding Corner
Topic: New(ish) Marantz Ethernet Control Plugin - add to EG Distro?
Replies: 0
Views: 2451

New(ish) Marantz Ethernet Control Plugin - add to EG Distro?

Hi,

I (with help from 'puppet') wrote a plugin for controlling Marantz receivers via TCP/ethernet a few years ago.

The code and discussion around it lives here:
http://www.eventghost.net/forum/viewtopic.php?f=9&t=5498&hilit=Marantz+TCP

It looks like a few people, myself included, have been ...
by SamWest
Tue Jul 29, 2014 10:53 am
Forum: General Support
Topic: USB-UIRT stops working ... Anyway to send reset?
Replies: 18
Views: 12394

Re: USB-UIRT stops working ... Anyway to send reset?

In case anyone is interested, I was getting a similar 'Device not found' error from the USB-UIRT, except for me, this happened whenever my PC came out of sleep or hibernate.

Manually disabling the USB-UIRT device in Windows Device Manager and restarting EventGhost fixed it, but no other ...
by SamWest
Sun Jun 02, 2013 11:45 am
Forum: Plugin Support
Topic: New Marantz TCP Control Plugin
Replies: 59
Views: 19892

Re: New Marantz TCP Control Plugin

I'm glad it worked for you.

All status replies that come back from the receiver are turned directly into EventGhost events.
For example: MarantzTCPPlugin.@VOL:-210 means the receiver has been set to -21.0dB, and MarantzTCPPlugin.SIDVD
means the input was set to DVD. You should see this in the EG ...
by SamWest
Tue May 28, 2013 7:48 am
Forum: Plugin Support
Topic: Interest in LAN / HTTP / Ethernet control of Denon/Marantz ?
Replies: 3
Views: 2629

Re: Interest in LAN / HTTP / Ethernet control of Denon/Maran

G'Day,

I've postwritten ed a pretty basic Marantz TCP plugin here viewtopic.php?f=9&t=5498
It does volume and mute out of the box, and you can send other commands by just looking them up in the command spec.

Hope that helps,
-Sam.
by SamWest
Tue May 28, 2013 7:44 am
Forum: Plugin Support
Topic: Marantz SR Receiver
Replies: 30
Views: 23562

Re: Marantz SR Receiver

Hi,

I've written a fairly quick and dirty Marantz TCP (ethernet) plugin that might do the trick. Only volume commands are implemented specifically at the moment, but there's also a customisable command which you can use to implement arbitrary commands from the command list.

See http://www ...
by SamWest
Fri May 24, 2013 11:20 am
Forum: Plugin Support
Topic: New Marantz TCP Control Plugin
Replies: 59
Views: 19892

New Marantz TCP Control Plugin

Hi all,

I've written a plugin to control Marantz (and possibly Denon) receivers via a TCP connection, for receivers which have ethernet or wifi.

It's pretty basic, and just lets you:

a) control the receiver's volume
b) send other arbitrary commands (see command specs below)
c) sync the ...
by SamWest
Fri Dec 07, 2012 8:28 am
Forum: General Support
Topic: How to use Event Payload as Action Parameter
Replies: 3
Views: 2805

Re: How to use Event Payload as Action Parameter

Sweet, thanks for that Pako, the SmartSpinIntCtrl got it working :)
I'll post the plugin in a new thread when I've tested/polished it a bit.

If anyone is interested in doing the same thing, here's my working plugin code:


class SetVolumeAbsolute(eg.ActionBase):
...
def __call__(self, volume ...
by SamWest
Thu Dec 06, 2012 10:36 am
Forum: General Support
Topic: How to use Event Payload as Action Parameter
Replies: 3
Views: 2805

How to use Event Payload as Action Parameter

I'm trying to write a plugin which will take my System.Volume's payload (ie the volume percentage) and pass it as a parameter to an Action in my plugin (so it will set my receiver's volume to the same level).

For example, I want to get the '28.00' bit from an event like:
System.Volume '28.00'
And ...