Skip to end of banner
Go to start of banner

OPC UA Create Object Example exercise

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

1. OPC UA Setup.

start with the setup described in

Getting started: IoT LFW example for netX 90 APP

2. Change OPC UA object

Cread OPC UA Hello World Variable in the Actuator object

open the comunicationstudio project

netXStudio_PNSV5_NetProxy_simple_V3.0.0.0\Components\cifXApplicationDemoNpx\OPCUA_CONFIG_PORT2\CommunicationStudioProject\NetProxy_simple\NetProxy_simple

and go to the object "Actuator"

click on "add new Node" andcreate in the "Actuator" object a new variable with the name "HelloWorld"

Now change the Data Type to "int16" with click on the green configuration symbol.

after choose of "int16" click on apply

4. Change netProxy object

Go to netProxy Object definition of the Actuator and click on Add

change the name to Hello World and data type int16

and click on Apply

5. Connect OPC UA with netProxy

Go to the mapping to connect netProxy with the OPC UA object

navigate to the Hello World variable and choose it and after ok do not forget to click apply.

If everthing is ok, it looks now like this

Export now thie configuration for the OPC UA server

CONFIG.NXD

OPC_INIT.TLV

Download this configuration files to the netX90 like in the getting started guide described.

6. UA Expert

Give the PC an IP address like 192.168.0.40. Set with Ethernet Device Configuration Tool

Start UAexpert project and configurate the device IP address.

netXStudio_PNSV5_NetProxy_simple_V3.0.0.0\Components\cifXApplicationDemoNpx\OPCUA_CONFIG_PORT2\UAexpertProject\NetProxy_simple_UAexpert_config.uap

UAexpert is the OPC UA client and connect it to the OPC UA Server on the netX90.

move variable with drag and drop in the data access view window

7. Application Source Code Changes

Change in the file NpxUserObjects.h the structure of the Actuartor and add the HelloWorld

typedef struct ACTUATOR_Ttag
{
    uint8_t bMode;     /*!< Mode[uint8] */
    uint8_t bState;    /*!< State[uint8] */
    int16_t iValue;    /*!< Value[int16] */
    int16_t iHelloWorld;    /*!< Value[int16] */
} ACTUATOR_T;

Change the file AppNpx_TerminaHandler.c and add HelloWorld handling.

case APP_TERMINAL_HANDLER_COMMAND_OPC_WRITE:
    {
      ACTUATOR_T tActuatorObj;
      tActuatorObj.bMode=0x55;
      tActuatorObj.bState=0xAA;
      tActuatorObj.iValue=0x1234;
      tActuatorObj.iHelloWorld=4321;
	...
	}

7. Terminal

Connect with a tool like hterm to the uart of the netX90. With "help" the possible list of commands will be returned.

choose "opcwr" will activate the function APP_TERMINAL_HANDLER_COMMAND_OPC_WRITE. This means, that the netX90 application will write the netPROXY objects. The netPROXY objects are connected with the OPC UA objects. The UA expert read cyclic the OPC UA object. Here the change can be seen:



  • No labels