will be fixed in next release.
What you see is it sending the hex value \x28 as a literal string, eg.
\ x 2 8 as 4 separate characters instead of the single hex byte.
Sorry for this, but should be fixed soon. I can't give an exact time
frame, but be sure we are working hard on the next release.
Jarrod
On Jan 4, 7:01 pm, stbluesrul <paul.l.cra...@gmail.com> wrote:
> I'm trying to use the [sliderval] to send volume commands.
> I simply input \xFA[siderval] into the command value.
> Then in the slider properties I change the slider value to hex.
> Map my command value to "On Release."
> In iViewer I move the slider to 40. It should output \xFA\x28
> to the serial port on the GC-100-12? Correct?
>
> Instead it is outputting \xFA\x5C\x78\x32\x38
>
> Can someone advise?
>
> On Jan 1, 4:41 am, Jarrod Bell <jar...@guilink.com> wrote:
>
>
>
> > To send the slider value in a command, simply use [sliderval], eg:
> > MV[sliderval]\x0A\x0D
>
> > The [sliderval] will then automatically be replaced by the actual
> > slider value, accounting for the slider min/max settings, and the
> > option of sending hex byte, hex string or decimal value (selectable in
> > slider properties).
>
> > See our wiki for more info and examples:http://www.commandfusion.com/wiki/index.php?title=GuiDesigner:System_...
>
> > Jarrod
>
> > On Dec 31 2009, 6:05 am, Fiasco <dgvoll...@gmail.com> wrote:
>
> > > No you are still doing a bidirectional update w/ regex.
>
> > > You send the volume command to the Denon from your ipod
>
> > > Slider sends command of
> > > MV##\x0A\x0D (where XX is a value from 00 to 99 for volume)
> > > or
> > > MVUP\x0A\x0D (turn volume up)
> > > MVDOWN\x0A\x0D (turn volume down)
>
> > > Denon receiver echos back volume state (via globalcache unit)
> > > MV## (where XX is a value from 00 to 99 for volume)
>
> > > Use a regexp in Command fusion to capture the value of the volume
> > > feedback from the Denon receiver to update the correct serial join for
> > > your volume slider
> > > MV(.*)
>
> > > On Dec 30, 10:02 am, Nahshon Williams <spc...@gmail.com> wrote:
>
> > > > So what you are saying is have a master slave relationship. Ipod gives
> > > > values of volume to denon device, device complies as opposed to bi
> > > > directional updates with regex??
>
> > > > Fiasco wrote:
> > > > > My question about that would be not updating the volume slider w/ a
> > > > > regex as I've been doing that but passing the value of the slider as
> > > > > the "command value" when the volume slider changes.
>
> > > > > On Dec 29, 3:44 pm, Jarrod Bell <jar...@guilink.com> wrote:
>
> > > > >> Fiasco's method of showing/hiding subpages on top of a button to give
> > > > >> the option of two different commands is a very nice solution. I would
> > > > >> definitely give that a try anyone who needs to send a different
> > > > >> command from a single button on every other press.
>
> > > > >> For grabbing the volume into a slider its as simple as creating a
> > > > >> regex to grab the volume level and then setting the min and max ranges
> > > > >> for the value. Then assign the captured value to an analog join and
> > > > >> use the same join on a gauge or slider and it will update with the
> > > > >> volume level direct feedback from the receiver.
>
> > > > >> Jarrod
>
> > > > >> On Dec 30, 3:52 am, Fiasco <dgvoll...@gmail.com> wrote:
>
> > > > >>> Ouch, that hurts (the socket lockout you mention) and the single
> > > > >>> concurrent connection. Glad to know that
> > > > >>> before I run into it.
>
> > > > >>> On Dec 29, 10:39 am, xAPPO <thor...@gmail.com> wrote:
>
> > > > >>>> I didn't look up the specific Denon model you are controlling but I
> > > > >>>> have my system integrated via a AVR-4306 which has inbuilt Ethernet -
> > > > >>>> regardless the RS232 and TCP socket protocol are much the same. One
> > > > >>>> awkward thing about the Denon via TCP is that if a socket is kept open
> > > > >>>> it can get locked out for some reason, and if this happens it can't
> > > > >>>> reconnect. Only one concurrent connection is supported and so it
> > > > >>>> requires that the Denon be power cycled to reset the socket.
>
> > > > >>>> Because of this you have to make a choice of either a permanent open
> > > > >>>> socket in which case you get real time event information from the
> > > > >>>> Denon or an open/close socket approach which avoids the lockouts but
> > > > >>>> compromises the event information . The latter then requires a few
> > > > >>>> exchanges each connection to recover state information - or a scape
> > > > >>>> from the inbuilt web page.
>
> > > > >>>> K- Hide quoted text -
>
> > > > >> - Show quoted text -
>
> > > > > --
>
> > > > > You received this message because you are subscribed to the Google Groups "CommandFusion" group.
> > > > > To post to this group, send email to commandfusion@googlegroups.com.
> > > > > To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
> > > > > For more options, visit this group athttp://groups.google.com/group/commandfusion?hl=en.-Hidequotedtext -
>
> > > > - Show quoted text -
--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.
Comments
0 comments to "Re: Video for RS232 or any relevant documentation"
Post a Comment