S7-200 PC Access SMART是西门子公司针对S7-200 SMART PLC与上位机通信推出的OPC(OLE for Process Control)服务器软件。其作用是跟其他标准的OPC客户端(Client)通信并提供数据信息。S7-200 PC Access SMART与S7-200 PLC的OPC 服务器软件 PC Access类似,也具有OPC客户端测试功能,使用者可以测试配置情况和通信质量。 下载链接:https://www.industry.siemens.com.cn/automation/cn/zh/automation-systems/industrial-automation/simatic-controller/simatic-s7-controller/smart200/Pages/Default.aspx
S7‑200 PC Access SMART 提供了一些示例项目,用于展示如何使用 S7‑200 PC Access SMART 实现不同应用的任务。 示例项目是完整的工作示例。安装程序中提供了每个示例项目所需的客户端、服务器和 STEP 7-Micro/WIN SMART 文件。在建立 PC 与运行中 S7-200 SMART PLC 之间的通信之后,便可查看可运行的示例项目。Samples 文件夹位于 C:\Users\Public\Documents\Siemens\S7-200 PC Access SMART 文件夹下。示例项目有Excel和VB.net两种。
下面的测试实例实现对VB0数据的简单读,初次接触,有待完善。`
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using OPC.Common;
using OPC.Data;
using OPC.Data.Interface;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
string ServerProgID = "S7200SMART.OPCServer";
string myItemA = "MWSMART.NewPLC.VB0";
string myItemB = "2:192.168.2.1:0201:0201,VB0,BYTE,RW";
OpcServer myOPC = new OpcServer();
OpcGroup myGroup;
OPCItemDef[] myOPCItemDef = new OPCItemDef[1];
int[] HandlesSrv = new int[1];
OPCItemResult[] rItm = new OPCItemResult[1];
myOPC.Connect(ServerProgID);