欢迎来到天天文库
浏览记录
ID:43840897
大小:751.21 KB
页数:6页
时间:2019-10-15
《OPC说明及C#DEMO》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、一、OPC数据交互的三种模式:同步、异步、订阅。1.同步模式2.异步模式3.订阅模式二.opc的架构三、架构中各项的说明:C#与OPC通讯代码(OPC连三菱PLC)usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingOPCAutomation;//实现订阅方式的读取以及异步方式的写入,测试OPCS
2、erver:melsecopcserver//测试2个点的读取一个点的写入,测试通过//2015年4月2日namespacedemo_one{publicpartialclassForm1:Form{//预定义OPCServermyServer=newOPCServer();//定义serverOPCGroupsmyGroups;//定义组集合OPCGroupmyGroup;//定义组OPCItemsmyItems;//定义标签集合OPCItemmyItem;//定义标签ArraystrTempIDs;//定义要添加的OPC标签的标示符数组ArraystrClientHandles;/
3、/定义要添加的OPC标签的客户端句柄数组ArrayiServerHandles;//定义返回的OPC标签的服务端句柄数组ArrayiErrors;//定义返回的OPC标签错误码数组ArraywriteServerHandles;//定义要写入的OPC标签的服务端句柄数组ArraywriteArrayValues;//定义要写入的数值数组ArraywriteErrors;//定义返回的对应的写入错误代码数组intwriteCancelID=0;//定义事务标示符,数据访问完成发生。intwriteTransID=0;//定义写入取消标示符,通过这个可以取消正在进行的异步访问objectR
4、equestedDataTypes=null;//nullobjectAccessPaths=null;//nullpublicForm1(){InitializeComponent();titleDis.Text="产量监控";ServerConnect();//调用服务器连接方法groupBuild();//调用组建立方法}//建立server连接privatevoidServerConnect(){myServer.Connect("Takebishi.Melsec.1","171.188.192.88");//连接的SERVER名称以及计算机IP(测试本地)myServer.O
5、PCGroups.DefaultGroupDeadband=0;//组不敏感带的百分值myServer.OPCGroups.DefaultGroupIsActive=true;//组集合激活}//建立组privatevoidgroupBuild(){myGroups=myServer.OPCGroups;//建立组集合myGroup=myGroups.Add();//添加组myGroup.IsActive=true;//组激活myGroup.IsSubscribed=true;//组订阅激活myGroup.UpdateRate=250;//刷新周期250MSmyGroup.DataCh
6、ange+=newDIOPCGroupEvent_DataChangeEventHandler(myGroup_DataChange);//数值刷新,任何OPC标签发生变化触发,不小于刷新周期。myGroup.AsyncWriteComplete+=newDIOPCGroupEvent_AsyncWriteCompleteEventHandler(myGroup_AsyncWriteComplete);//异步写入完成触发itemRead();//标签集合设置方法}//标签读设置privatevoiditemRead(){myItems=myGroup.OPCItems;//建立标签集
7、合string[]TempIDs=newstring[]{"0","cx.Group1.Step","cx.Group1.Time","cx.Group1.data1","cx.Group1.bit1"};int[]ClientHandles=newint[]{0,1,2,3,4};strTempIDs=(Array)TempIDs;strClientHandles=(Array)ClientHandles;//将需要读取的标签添加到标签集合中
此文档下载收益归作者所有