direct IP ethernet Marantz
Re: direct IP ethernet Marantz
Your condition statements are way off the mark..
I'll send you the feedback statement tonorrow.
I'll send you the feedback statement tonorrow.
Re: direct IP ethernet Marantz
Hex bytes are represented in the software in \x format, so your response terminator should be \x0D, not just 0D, and your hex bytes returned should also be entered in \x format, with no spaces in between. Every time the app sees the response terminator, it checks against the patterns to see if one matches, so it is not valid to have a \x0D contained within the pattern in this case.
You can also just enter the text of the response, eg:
@PWR:2
which is the 2nd half of the response you have entered (\x40\x50\x57\x52\x3A\x32)
You can also just enter the text of the response, eg:
@PWR:2
which is the 2nd half of the response you have entered (\x40\x50\x57\x52\x3A\x32)
Re: direct IP ethernet Marantz
Here is a file with the feedback I use at the moment. You will have to rename it from Denon Feedback.txt to Denon Feedback.dc2 as the forum would not allow me to attach a .dc2 file.
just import it into the feedback section of your Marantz Device and configure the actions after renaming
I have also added a couple of graphic showing the feedback info.
Good Luck
just import it into the feedback section of your Marantz Device and configure the actions after renaming
I have also added a couple of graphic showing the feedback info.
Good Luck
You do not have the required permissions to view the files attached to this post.
-
- Posts: 60
- Joined: Tue Apr 02, 2013 2:21 pm
Re: direct IP ethernet Marantz
hi,
can you show me the feedback action of Master Volume?
can you show me the feedback action of Master Volume?
Re: direct IP ethernet Marantz
It is the first feedback on the first graphic above..flinke flasche wrote:hi,
can you show me the feedback action of Master Volume?
The Denon/Marantz adjusts and returns volume in 1/2 step increments ie 32.5 33.0 etc
The above feedback strips the .5 etc and returns only the first two digits ie 32 33 34 etc.
-
- Posts: 60
- Joined: Tue Apr 02, 2013 2:21 pm
Re: direct IP ethernet Marantz
can you give me the code for 32.5, please
Re: direct IP ethernet Marantz
Don't understand your question, there is no code for 32.5. You will have to parse it if you want the fine control.
The feedback I use is MV([0-9a].) limits the feedback returned to 2 characters that I then attach to a label and a number.
The feedback I use is MV([0-9a].) limits the feedback returned to 2 characters that I then attach to a label and a number.
You do not have the required permissions to view the files attached to this post.
-
- Posts: 60
- Joined: Tue Apr 02, 2013 2:21 pm
Re: direct IP ethernet Marantz
I thought there is a code for 32.5
I have a feedback that shows me 32 5
it show my the 3 numbers without the .
How can i display the .
I have a feedback that shows me 32 5
it show my the 3 numbers without the .
How can i display the .
Re: direct IP ethernet Marantz
That is why I limit the feedback to 2 characters..
I don't need to see the .5 so I'm not going to spend the time figuring out how to capture and display it.
Like I said if you want it then parse it out.
I don't need to see the .5 so I'm not going to spend the time figuring out how to capture and display it.
Like I said if you want it then parse it out.
-
- Posts: 60
- Joined: Tue Apr 02, 2013 2:21 pm
Re: direct IP ethernet Marantz
For what is the "a" in you code?
My code looks like
MV([0-9].) for 2 characters
MV([0-9]*) for all characters
I try a lot of codes but no one works.
I think the only way it will work is to write an action for each Feedback code.
MV805 -> send to a Label 80.5
MV80 -> send to Label 80.0
For every 200 codes.
My code looks like
MV([0-9].) for 2 characters
MV([0-9]*) for all characters
I try a lot of codes but no one works.
I think the only way it will work is to write an action for each Feedback code.
MV805 -> send to a Label 80.5
MV80 -> send to Label 80.0
For every 200 codes.
Re: direct IP ethernet Marantz
You got it... That is why I only use the first two charcters. No reason to see 30.5, 30 tells me all I need to know.
The (a) in the regex means alpha characters, not really needed in this code but I just included by habit.
The (a) in the regex means alpha characters, not really needed in this code but I just included by habit.
-
- Posts: 6
- Joined: Mon Dec 01, 2014 8:47 pm
Re: direct IP ethernet Marantz
Sorry to thread jack everybody but I need some similar help in getting feedback on a Pioneer Sc-2025 AVR.
I have the IP commands from Pioneer for the AVR which I am using to send commands but am a bit like a fish out of water when it comes to retrieving 2-way feedback data.
At the moment I'm also just trying to use a label to indicate when the AVR is switched on/off (and then use this to swap volume commands between TV and AVR)
I know I need to send the AVR the command ?P and then receive the following commands:
pwr0 = on
pwr1 = off
depending on the power state.
Can someone tell me how I go about polling the AVR to query the power state and then use it to add a label based on the power state
I have the IP commands from Pioneer for the AVR which I am using to send commands but am a bit like a fish out of water when it comes to retrieving 2-way feedback data.
At the moment I'm also just trying to use a label to indicate when the AVR is switched on/off (and then use this to swap volume commands between TV and AVR)
I know I need to send the AVR the command ?P and then receive the following commands:
pwr0 = on
pwr1 = off
depending on the power state.
Can someone tell me how I go about polling the AVR to query the power state and then use it to add a label based on the power state
Re: direct IP ethernet Marantz
I suggest you start a new thread with the title Pioneer Sc-2025 to get help from people that have that device.
Re: direct IP ethernet Marantz
See the attachments. Capture-1 is the 2-way feedback, capture-2 is the action; mine is setting a flag, but you could set a label to "On" or whatever.
You do not have the required permissions to view the files attached to this post.