Home AMX User Forum NetLinx Studio

Denon V300 RS232

I am sending command like this and DVD is not responding ? Where is the problem ?


BUTTON_EVENT[dvPanel,73] //DVD ONN-OFF POWER
{
PUSH:
{
SEND_STRING dvDVD,'[PC,RC,12]\r'
}
}

Comments

  • Don't have the Denon manual, but a '\r' in manuals means "carriage return", which is value $0D or 13. So the string may be SEND_STRING dvDVD,"'[PC,RC,12]', $0D"
    It sometimes also means "enter", which would be the sequence "$0D,$0A"

    Other common stumbling block is the configuration of the RS232 port, which in NetLinx should be done in a DATA_EVENT[]:
    DATA_EVENT[dvDVD]
    {
    ONLINE:
    {
    SEND_COMMAND dvDVD,'SET BAUD 9600,N,8,1 485 DISABLE'
    }
    }

    Kind regards,
  • I can confirm that the command is "[PC,RC,12]',$0d"

    If you have any more difficulty with the Denon let me know - I have a nice module for it.
  • There's also a Duet module on AMX's site for this. Haven't used it personally. Came close, then the deck got removed from the project I was working on...

    - Chip
Sign In or Register to comment.