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,
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,
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.
DATA_EVENTS do work with AXLink devices connected to a NetLinx controller. If the controller that edgelitoc is using is an Axcent3 then you are correct the DATA_EVENT won't work but if he is using a NetLinx controller then the DATA_EVENT will work.
I'm using NI3 and I have placed it on data event and i have a control on the plasma but still i didn't get any feedback.
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.
I have had the same issue with AXB-232's and in talking with AMX, is seems that they come loaded with some programming from the factory and they suggested zaping them, so I put in my online event for each device this code and it has fixed all my problems.
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'
}
}