├── .gitattributes ├── .gitignore ├── OPC2PowerBI.sln ├── OPC2PowerBI ├── OPC2PowerBI.csproj ├── Program.cs └── opc2powerbi.conf ├── README.md └── h-opc ├── Common ├── ClientExtensions.cs ├── IClient.cs ├── Node.cs ├── OpcException.cs ├── OpcStatus.cs ├── Quality.cs └── ReadEvent.cs ├── Da ├── DaClient.cs ├── DaClient_async.cs └── DaNode.cs ├── Ua ├── ClientUtils.cs ├── NodeExtensions.cs ├── UaClient.cs ├── UaClientOptions.cs └── UaNode.cs └── h-opc.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/.gitignore -------------------------------------------------------------------------------- /OPC2PowerBI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/OPC2PowerBI.sln -------------------------------------------------------------------------------- /OPC2PowerBI/OPC2PowerBI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/OPC2PowerBI/OPC2PowerBI.csproj -------------------------------------------------------------------------------- /OPC2PowerBI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/OPC2PowerBI/Program.cs -------------------------------------------------------------------------------- /OPC2PowerBI/opc2powerbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/OPC2PowerBI/opc2powerbi.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/README.md -------------------------------------------------------------------------------- /h-opc/Common/ClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/ClientExtensions.cs -------------------------------------------------------------------------------- /h-opc/Common/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/IClient.cs -------------------------------------------------------------------------------- /h-opc/Common/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/Node.cs -------------------------------------------------------------------------------- /h-opc/Common/OpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/OpcException.cs -------------------------------------------------------------------------------- /h-opc/Common/OpcStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/OpcStatus.cs -------------------------------------------------------------------------------- /h-opc/Common/Quality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/Quality.cs -------------------------------------------------------------------------------- /h-opc/Common/ReadEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Common/ReadEvent.cs -------------------------------------------------------------------------------- /h-opc/Da/DaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Da/DaClient.cs -------------------------------------------------------------------------------- /h-opc/Da/DaClient_async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Da/DaClient_async.cs -------------------------------------------------------------------------------- /h-opc/Da/DaNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Da/DaNode.cs -------------------------------------------------------------------------------- /h-opc/Ua/ClientUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Ua/ClientUtils.cs -------------------------------------------------------------------------------- /h-opc/Ua/NodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Ua/NodeExtensions.cs -------------------------------------------------------------------------------- /h-opc/Ua/UaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Ua/UaClient.cs -------------------------------------------------------------------------------- /h-opc/Ua/UaClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Ua/UaClientOptions.cs -------------------------------------------------------------------------------- /h-opc/Ua/UaNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/Ua/UaNode.cs -------------------------------------------------------------------------------- /h-opc/h-opc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riclolsen/OPC2PowerBI/HEAD/h-opc/h-opc.csproj --------------------------------------------------------------------------------