You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
using HybirdFrameworkDriver.ModbusTcpMaster;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HybirdFrameworkServices.Plc
|
|
{
|
|
public class PlcFault
|
|
{
|
|
public ModbusProperty<ushort> ErrorCode01 { get; set; } = new(40701); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode02 { get; set; } = new(40702); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode03 { get; set; } = new(40703); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode04 { get; set; } = new(40704); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode05 { get; set; } = new(40705); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode06 { get; set; } = new(40706); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode07 { get; set; } = new(40707); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode08 { get; set; } = new(40708); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode09 { get; set; } = new(40709); // 错误码
|
|
public ModbusProperty<ushort> ErrorCode10 { get; set; } = new(40710); // 错误码
|
|
}
|
|
}
|