Initial commit

This commit is contained in:
2025-11-17 08:44:00 +01:00
parent 5ef0bca588
commit 6b384d43ff
46 changed files with 7876 additions and 0 deletions

13
backend/minimal_test.py Normal file
View File

@@ -0,0 +1,13 @@
from asyncua import Client
import asyncio
OPC_UA_URL = "opc.tcp://192.168.0.148:4840"
async def main():
client = Client(OPC_UA_URL)
endpoints = await client.connect_and_get_server_endpoints()
for e in endpoints:
print(e.EndpointUrl, e.SecurityPolicyUri, e.SecurityMode)
if __name__ == '__main__':
asyncio.run(main())