Device IP
Binu
Posts: 49
Can someone tell me how can i find out the IP address of a touch panel (500i) on fly mode.
I mean a command from the master to the device to get the IP.
I mean a command from the master to the device to get the IP.
0
Comments
Declare the structure under define_variable like any other structure:
define_variable
DEV_INFO_STRUCT sDeviceInfo
Then you need to send this command every time you want the structure "sDeviceInfo" to be updated with the correct info:
define_event
button_event[dvTp,1]
{
push:
DEVICE_INFO(dvTp, sDeviceInfo) // get device info
}
Now the "sDeviceInfo" structure will contain lots of info about the device like Model, Model no. , serial No. and IP
Just put this "sDeviceInfo" structure under debug and you will see all avilable info.
Hope this helps.
Ronen