Denon V300 RS232
VladaPUB
Posts: 139
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'
}
}
BUTTON_EVENT[dvPanel,73] //DVD ONN-OFF POWER
{
PUSH:
{
SEND_STRING dvDVD,'[PC,RC,12]\r'
}
}
0
Comments
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,
If you have any more difficulty with the Denon let me know - I have a nice module for it.
- Chip