AXB-232++
edgelitoc
Posts: 160
I am controlling an LG Display Model 50PC5D through AXB-232++ which is 200feet away from the controller. Its working find with transmit but I could not get any receive strings. I used baud rate at 9600N81n,
0
Comments
You might need to send it the receive on command. I don't have it in front of me but I think it's RXON.
The easiest way to make sure the thing doesn't have setup issues is to just send it the ZAP! command. That puts the thing back to factory default and erases any axcess programs that might be in it covertly changing things.
SEND_COMMAND dvDev,'RXON'
I also like to send
SEND_COMMAND dvDev,'RXCLR'
which clears the internal buffer.
Good Luck!
DATA_EVENT
think about it. The master might have started up but the device has not yet come online to receive the command.
Slave settings actually only apply to Axcent3s.
Does the RX L.E.D. on the serial port light up when the plasma is sending data? If not, then it's something to do with the cable or the device itself. The RX LED will light up if there's activity even if the baud rate is off.
DATA_EVENT [device]
{
ONLINE :
{
SEND_COMMAND device,'ZAP!'
SEND_COMMAND device,'RXON'
}
}