tests/ide_tests/opcua_browse.sikuli/opcua_service.bash
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sun, 18 Jun 2023 16:28:42 +0200
changeset 3820 46f3ca3f0157
parent 3718 7841b651d601
permissions -rw-r--r--
OPC-UA client : python3 + AsyncUA fixes
#!/bin/bash

echo "Instant OPC-UA server for test"

# Run server
exec $BEREMIZPYTHONPATH - << EOF

import sys
import os
import time
import asyncio

from asyncua import Server

async def main():
    server = Server()
    host = os.environ.get("OPCUA_DEFAULT_HOST", "127.0.0.1")
    endpoint = "opc.tcp://"+host+":4840/freeopcua/server/"
    await server.init()
    server.set_endpoint(endpoint)

    uri = "http://beremiz.github.io"
    idx = await server.register_namespace(uri)

    objects = server.get_objects_node()

    testobj = await objects.add_object(idx, "TestObject")
    testvarout = await testobj.add_variable(idx, "TestOut", 1.2)
    testvar = await testobj.add_variable(idx, "TestIn", 5.6)
    await testvar.set_writable()

    await server.start()
    try:
        while True:
            await asyncio.sleep(1)
            inval = await testvar.get_value()
            print(inval)
            await testvarout.set_value(inval*2)
            sys.stdout.flush()
    finally:
        await server.stop()

asyncio.run(main())

EOF