C#读写 AB PLC 直接通过节点来读写数据
读写 AllenBradley PLC
https://www.cnblogs.com/dathlin/p/9607929.html
http://www.hslcommunication.cn/
本文将使用一个 Github 开源的组件库技术来读写 AB PLC,使用的是基于以太网的实现,不需要额外
的组件,读取操作只要放到后台线程就不会卡死线程,本组件支持超级方便的高性能读写操作
官网:http://www.hslcommunication.cn/ 官网包含了详细的 API 文档
联系作者及加群方式(激活码在群里发放):http://www.hslcommunication.cn/Cooperation
本类库绝对是 ab 最强的通讯库
nuget 地址:https://www.nuget.org/packages/HslCommunication/
github 地址:https://github.com/dathlin/HslCommunication
从 NUGET 安装
1
Install-Package HslCommunication
准备
本文将展示怎样使用代码来访问 PLC 数据,希望给有需要的人解决一些实际问题。主要对 AB PLC
的节点数据进行读写,您在应用工业生产使用之前,应该应该详细的测试,以免造成不必要的损失
此处使用到了 2 个命名空间:
1
2
using HslCommunication.Profinet.AllenBradley;
using HslCommunication;
评论0