├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── client ├── BaseClient.py ├── README.md ├── browse.py ├── call_method.py ├── client1.py ├── extension_objects.py ├── read.py ├── subscribe.py └── write.py ├── requirements.txt └── server ├── BaseServer.py └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /client/BaseClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/BaseClient.py -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/README.md -------------------------------------------------------------------------------- /client/browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/browse.py -------------------------------------------------------------------------------- /client/call_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/call_method.py -------------------------------------------------------------------------------- /client/client1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/client1.py -------------------------------------------------------------------------------- /client/extension_objects.py: -------------------------------------------------------------------------------- 1 | # coming soon! -------------------------------------------------------------------------------- /client/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/read.py -------------------------------------------------------------------------------- /client/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/subscribe.py -------------------------------------------------------------------------------- /client/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/client/write.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/BaseServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasHeine/opcua-tutorial/HEAD/server/BaseServer.py -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- 1 | Comming Soon! 2 | --------------------------------------------------------------------------------