修改板卡
This commit is contained in:
@ -73,7 +73,7 @@ namespace DH.Devices.Motion
|
||||
[Category("机台配置")]
|
||||
[DisplayName("机台类型")]
|
||||
[Description("机台类型")]
|
||||
public MachineDiskType MachineDiskType { get; set; } = MachineDiskType.DoubleDisk;
|
||||
public MachineDiskType MachineDiskType { get; set; } = MachineDiskType.SingleDisk;
|
||||
|
||||
|
||||
|
||||
@ -111,12 +111,12 @@ namespace DH.Devices.Motion
|
||||
[DisplayName("输出IO总数")]
|
||||
public int OutputNums { get; set; } = 16;
|
||||
|
||||
//[Category("IO配置")]
|
||||
//[DisplayName("IO定义集合")]
|
||||
//[Description("IO定义集合")]
|
||||
[Category("IO配置")]
|
||||
[DisplayName("IO定义集合")]
|
||||
[Description("IO定义集合")]
|
||||
//[TypeConverter(typeof(CollectionCountConvert))]
|
||||
//[Editor(typeof(ComplexCollectionEditor<IODefinition>), typeof(UITypeEditor))]
|
||||
//public List<IODefinition> IODefinitionCollection { get; set; } = new List<IODefinition>();
|
||||
// [Editor(typeof(ComplexCollectionEditor<IODefinition>), typeof(UITypeEditor))]
|
||||
public List<IODefinition> IODefinitionCollection { get; set; } = new List<IODefinition>();
|
||||
|
||||
[Category("IO配置")]
|
||||
[DisplayName("是否信号模式")]
|
||||
@ -194,35 +194,35 @@ namespace DH.Devices.Motion
|
||||
public List<BlowSetting> BlowSettings { get; set; } = new List<BlowSetting>();
|
||||
|
||||
|
||||
//[Category("筛选配置")]
|
||||
//[DisplayName("转盘运转方向")]
|
||||
//[Description("转盘运转方向,顺时针或逆时针")]
|
||||
[Category("筛选配置")]
|
||||
[DisplayName("转盘运转方向")]
|
||||
[Description("转盘运转方向,顺时针或逆时针")]
|
||||
//[TypeConverter(typeof(EnumDescriptionConverter<RotationDirectionEnum>))]
|
||||
//public RotationDirectionEnum MotionDir { get; set; } = RotationDirectionEnum.Clockwise;
|
||||
public RotationDirectionEnum MotionDir { get; set; } = RotationDirectionEnum.Clockwise;
|
||||
|
||||
|
||||
|
||||
[Category("筛选配置")]
|
||||
[DisplayName("物料尺寸最大值")]
|
||||
[Description("物料尺寸最大值,单位:脉冲")]
|
||||
public uint PieceMaxSize { get; set; } = 2000;
|
||||
public uint PieceMaxSize { get; set; } = 20000;
|
||||
|
||||
|
||||
[Category("筛选配置")]
|
||||
[DisplayName("物料尺寸最小值")]
|
||||
[Description("物料尺寸最小值,单位:脉冲")]
|
||||
public uint PieceMinSize { get; set; } = 1500;
|
||||
public uint PieceMinSize { get; set; } = 10;
|
||||
|
||||
|
||||
[Category("筛选配置")]
|
||||
[DisplayName("物料最小间隔")]
|
||||
[Description("物料最小间隔,单位:脉冲")]
|
||||
public uint MinDistance { get; set; } = 2000;
|
||||
public uint MinDistance { get; set; } = 10;
|
||||
|
||||
[Category("筛选配置")]
|
||||
[DisplayName("两个物料之间触发最小间隔时间")]
|
||||
[Description("两个物料之间触发最小间隔时间,单位:ms")]
|
||||
public uint MinTimeInterval { get; set; } = 10;
|
||||
public uint MinTimeInterval { get; set; } = 1;
|
||||
|
||||
|
||||
|
||||
@ -550,7 +550,7 @@ namespace DH.Devices.Motion
|
||||
[Category("回原点参数")]
|
||||
[DisplayName("回原点方式")]
|
||||
[Description("HomeMode:回原点方式")]
|
||||
public GoHomeMode HomeMode { get; set; } = GoHomeMode.Negative_Ne_Center_H_Positive_N_Stop_HNeO_Offset_Po;
|
||||
public GoHomeMode HomeMode { get; set; } = GoHomeMode.Negative_Ne_Center_H_Positive_N_Index_HPoO_Offset_Po;
|
||||
|
||||
|
||||
[Category("回原点参数")]
|
||||
|
Reference in New Issue
Block a user