摘要: OPC客户端操作主要有4个步骤:1.连接OPC服务器2.创建组和项3.读写数据4.断开服务器连接全部代码:View Code using System;using System.Collections.Generic;using System.Net;using System.Threading;using OPCAutomation;namespace ConsoleOPC{ public class OPCClient { private OPCServer KepServer; private OPCGroups KepGroups; ... 阅读全文
posted @ 2012-09-01 09:09 朋克 阅读(11051) 评论(7) 推荐(1) 编辑