How to change IP address in the runtime mode?


Recommended Posts

Either by doing:

device.mydevice.configureComm()

or

device.mydevice.address = "10.0.0.1"

device.mydevice.initComm()

Note that neither method saves the changes. If you need it to persist, either do system.saveDocument() after the change, or use a registry variable to store the address and update it on load.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.