Sic.Framework-Nanjing-Baishi/MECF.Framework.RT.Equipment.../HardwareUnits/MachineVision/Keyence/KeyenceCVX300FMessage.cs

15 lines
387 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00

using MECF.Framework.Common.Communications;
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.MachineVision.Keyence
{
public class KeyenceCVX300FMessage : BinaryMessage
{
public byte DeviceAddress { get; set; }
public byte FunctionCode { get; set; }
public byte Length { get; set; }
public byte[] Data { get; set; }
}
}