• 大小: 0.53M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: C#  Modbus  

资源简介

c# 操作带Modbus模块欧姆龙PLC

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using NModbusDemo;   //Modbus 封装好的类库

namespace getValueWithDll
{
    class Program
    {
        static void Main(string[] args)
        {
            NModbusDemo.Program Program = new NModbusDemo.Program();
            try
            {
                //string IP = “169.254.22.202“;   // 镭焊设备PLC IP地址
                string IP = “127.0.0.1“;   // 镭焊设备PLC IP地址
                ushort Port = 502;         // 镭焊设备PLC port
                ushort startAddress = 60;  // 镭焊设备PLC 地址
                string strType = ““;       //  返回值类型 => “number“則返回PLC取出來的值or““其他返回PLC地址對應的提示信息

                string plcValue = Program.getValue(IP Port startAddress strType)

评论

共有 条评论