Appearance
焊接工艺
焊接装置
设置焊接装置时,发送:
0x4001 WELDEQUIPMENT_SET
json
{
"basic_functions": {
"arc_detection_time": 1.3,
"arc_depletion_detection_time": 1.3,
"arc_detection_ensure_time": 1.3,
"pre_give_gas_time": 1.5,
"close_time": 1.9,
"weld_interruption_detection": 1,
"arc_fly": 1
},
"micro_adjustment": {
"single_adjustment_current": 3,
"single_adjustment_voltage": 4,
"single_adjustment_speed": 5,
"swing_weld_frequency": 6,
"swing_weld_range": 1.1
},
"restart": {
"restart_times": 1,
"restart_distance": 2,
"restart_speed": 3,
"re_arc_times": 4,
"restart_enable": false,
"re_arc_enable": false,
"restart_mode": 0
},
"antiCollision": {
"enable": false,
"inputPort": 1,
"inputValue": 1,
"stopTime": 80,
"outputPort": 2,
"outputValue": 1,
"shieldFlag": false,
"shieldTime": 30
},
"other": {
"break_back_time": 1.2,
"weld_finish_time": 1.3,
"break_back_enable": false,
"weld_finish_function": true,
"simulation_set_zero": false
},
"collisionButtonFlag": {
"error_enable_switch": true
}
}basic_functions 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| arc_detection_time | double | 起弧检测时间 |
| arc_depletion_detection_time | double | 电弧耗尽检测时间 |
| arc_detection_ensure_time | double | 起弧确认检测时间 |
| pre_give_gas_time | double | 提前送气时间 |
| close_time | double | 延后关气时间 |
| weld_interruption_detection | int | 焊接中断检测 |
| arc_fly | int | 飞行起弧 |
micro_adjustment 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| single_adjustment_current | int | 焊接电流单次调整量 |
| single_adjustment_voltage | int | 焊接电压单次调整量 |
| single_adjustment_speed | int | 焊接速度单次调整量 |
| swing_weld_frequency | int | 摆焊频率单次调整量 |
| swing_weld_range | double | 摆焊幅度单次调整量 |
restart 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| restart_times | int | 再启动次数 |
| restart_distance | int | 再启动距离 |
| restart_speed | int | 再启动速度 |
| re_arc_times | int | 再起弧次数 |
| restart_enable | bool | 再启动使能 |
| re_arc_enable | bool | 再起弧使能 |
| restart_mode | int | 再启动模式:0-自动再启动,1-半自动再启动,2-停机 |
antiCollision 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| enable | bool | 防碰撞功能使能 |
| inputPort | int | 防碰撞IO端口 |
| inputValue | int | 防碰撞触发电平 |
| stopTime | int | 防碰撞快速停止时间 |
| outputPort | int | 防碰撞输出提示端口 |
| outputValue | int | 防碰撞输出提示电平 |
| shieldFlag | bool | 屏蔽防碰撞使能 |
| shieldTime | int | 屏蔽时间 |
other 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| break_back_time | double | 断弧回抽时间 |
| weld_finish_time | double | 焊接完成回抽时间 |
| break_back_enable | bool | 断弧回抽使能 |
| weld_finish_function | bool | 焊接完成回抽功能 |
| simulation_set_zero | bool | 灭弧模拟量置零功能 |
collisionButtonFlag 参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| error_enable_switch | bool | 拖拽点动模式切换开关 |
查询焊接装置时,发送:
0x4002 WELDEQUIPMENT_INQUIRE
data:无
收到查询焊接装置时,返回:
0x4003 WELDEQUIPMENT_RESPOND
同0x4001
设置电流电压匹配
设置电流电压匹配时,发送:
0x4004 CURVOLMATCH_SET
json
{
"current_control": {
"set_voltage": [1, 2, 3, 4, 5, 6, 7, 8],
"actual_current": [1, 2, 3, 4, 5, 6, 7, 8]
},
"voltage_control": {
"set_voltage": [1, 2, 3, 4, 5, 6, 7, 8],
"actual_voltage": [1, 2, 3, 4, 5, 6, 7, 8]
},
"robot": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| current_control.set_voltage | array | 设置电流 |
| current_control.actual_current | array | 实际电流 |
| voltage_control.set_voltage | array | 设置电压 |
| voltage_control.actual_voltage | array | 实际电压 |
| robot | int | 机器人编号 |
查询电流电压匹配时,发送:
0x4005 CURVOLMATCH_INQUIRE
data:无
收到查询电流电压匹配时,返回:
0x4006 CURVOLMATCH_RESPOND
json
{
"current_control": {
"set_voltage": [1, 2, 3, 4, 5, 6, 7, 8],
"actual_current": [1, 2, 3, 4, 5, 6, 7, 8]
},
"voltage_control": {
"set_voltage": [1, 2, 3, 4, 5, 6, 7, 8],
"actual_voltage": [1, 2, 3, 4, 5, 6, 7, 8]
},
"IO": {
"AO_setcurrent": 0,
"AO_setvoltage": 0
},
"robot": 1
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| current_control.set_voltage | array | 设置电流 |
| current_control.actual_current | array | 实际电流 |
| voltage_control.set_voltage | array | 设置电压 |
| voltage_control.actual_voltage | array | 实际电压 |
| IO.AO_setcurrent | int | 电流输出端口 |
| IO.AO_setvoltage | int | 电压输出端口 |
| robot | int | 机器人编号 |
焊接参数
设置焊接参数时,发送:
0x4007 WELDPARAMETER_SET
json
{
"num": 1,
"notes": "示例",
"arcoff_parameters": {
"arcoff_voltage": 1.1,
"arcoff_current": 1.1,
"arcoff_time": 1.1,
"ramp_time": 1.1,
"ramp_distance": 1.1,
"ramp_enable": true,
"ramp_mode": 1
},
"weld_parameters": {
"weld_current": 1.1,
"weld_voltage": 1.1
},
"arcon_parameters": {
"arcon_current": 1.1,
"arcon_voltage": 1.1,
"arcon_time": 1.1,
"arcon_ramp_time": 1.1,
"arcon_ramp_distance": 1.1,
"arcon_ramp_enable": true,
"arcon_ramp_mode": 1,
"arcon_use_param": true,
"arcoff_use_param": true
}
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| num | int | 参数序号,从1开始 |
| notes | string | 注释 |
arcoff_parameters(收弧参数)
| 参数名 | 类型 | 说明 |
|---|---|---|
| arcoff_voltage | double | 收弧电压 |
| arcoff_current | double | 收弧电流 |
| arcoff_time | double | 收弧时间 |
| ramp_time | double | 渐变时间 |
| ramp_distance | double | 渐变距离 |
| ramp_enable | bool | 渐变使能 |
| ramp_mode | int | 收弧渐变方式:0-时间渐变,1-距离渐变 |
weld_parameters(焊接参数)
| 参数名 | 类型 | 说明 |
|---|---|---|
| weld_current | double | 焊接电流 |
| weld_voltage | double | 焊接电压 |
arcon_parameters(起弧参数)
| 参数名 | 类型 | 说明 |
|---|---|---|
| arcon_current | double | 起弧电流 |
| arcon_voltage | double | 起弧电压 |
| arcon_time | double | 起弧时间 |
| arcon_ramp_time | double | 渐变时间 |
| arcon_ramp_distance | double | 渐变距离 |
| arcon_ramp_enable | bool | 起弧渐变使能 |
| arcon_ramp_mode | int | 起弧渐变方式:0-时间渐变,1-距离渐变 |
| arcon_use_param | bool | 起弧参数使能 |
| arcoff_use_param | bool | 收弧参数使能 |
查询焊接参数时,发送:
0x4008 WELDPARAMETER_INQUIRE
json
{
"num": 1,
"robot": 1
}收到查询焊接参数时,返回:
0x4009 WELDPARAMETER_RESPOND
同0x4007
摆焊参数
设置摆焊参数时,发送:
0x400B WEAVPARAMETER_SET
json
{
"num": 1,
"parameter": {
"horizontal_angle": 5.0,
"init_direction": 1,
"isMove": 1,
"left_standing_time": 4.0,
"note": "AA",
"right_standing_time": 3.0,
"vertical_angle": 6.0,
"weaving_ampli": 2.0,
"weaving_freq": 1.0,
"weaving_type": 1
}
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| num | int | 参数序号,从1开始 |
parameter
| 参数名 | 类型 | 说明 |
|---|---|---|
| horizontal_angle | double | 水平偏角:-180 ~ +180 |
| init_direction | int | 起始方向:0-正方向(+1),1-负方向(-1) |
| isMove | int | 移动模式:0-移动,1-停留 |
| left_standing_time | double | 左停留时间 |
| note | string | 注释 |
| right_standing_time | double | 右停留时间 |
| vertical_angle | double | 竖直偏角:-180 ~ +180 |
| weaving_ampli | double | 摆动幅度:0-50 |
| weaving_freq | double | 摆动频率 |
| weaving_type | int | 摆动类型:0-正弦,1-Z字形,2-圆形摆,3-外部轴定点摆 |
查询摆焊参数时,发送:
0x400C WEAVPARAMETER_INQUIRE
json
{
"num": 1
}收到查询摆焊参数时,返回:
0x400D WEAVPARAMETER_RESPOND
同0x400B
电流电压匹配实际值
设置电流电压匹配参数实际值,修改值就会发送,无需保存:
0x400E WELDFACTCURVOL_SET
json
{
"type": 0,
"value": 4.13
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| type | int | 0-电流控制匹配,2-电压控制匹配 |
| value | double | 值 |
控制器返回:
0x400F WELDFACTCURVOL_RESPOND
json
{
"result": 1,
"robot": 1
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| result | int | 1-设置成功,0-设置失败 |
| robot | int | 机器人编号 |
开始进行模拟量匹配:建立电流电压匹配界面会发送true,离开false
0x4010 WELD_CURVOLMATCH_START
json
{
"start": true
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| start | bool | true-开始,false-结束 |
焊接IO
设置焊接IO接口时,发送:
0x4011 WELDIOPORT_SET
json
{
"Ain": {
"Voltage": 2,
"electric": 1
},
"Aout": {
"given_electric_current": 1,
"given_setvoltage": 2
},
"Din": {
"arc_success": 1,
"seek_success": 2
},
"Dout": {
"arc_signal": 1,
"gas_detection": 4,
"positioning_mode": 5,
"wire_feed": 2,
"wire_feed_back": 3
}
}Ain(输入模拟量)
| 参数名 | 类型 | 说明 |
|---|---|---|
| Voltage | int | 焊接电压 |
| electric | int | 焊接电流 |
Aout(输出模拟量)
| 参数名 | 类型 | 说明 |
|---|---|---|
| given_electric_current | int | 给定电流信号 |
| given_setvoltage | int | 给定电压信号 |
Din(数字输入)
| 参数名 | 类型 | 说明 |
|---|---|---|
| arc_success | int | 起弧成功 |
| seek_success | int | 寻位成功 |
Dout(数字输出)
| 参数名 | 类型 | 说明 |
|---|---|---|
| arc_signal | int | 起弧成功信号 |
| gas_detection | int | 气体检测信号 |
| positioning_mode | int | 寻位模式 |
| wire_feed | int | 点动送丝信号 |
| wire_feed_back | int | 反向送丝信号 |
查询焊接IO接口时,发送:
0x4012 WELDIOPORT_INQUIRE
json
{}控制器收到查询焊接IO接口时,返回:
0x4013 WELDIOPORT_RESPOND
data:同0x4011
查询焊接状态时,发送:
0x4015 WELDMONITOR_INQUIRE
data:无
控制器收到查询焊接状态时,返回:
0x4016 WELDSTATE_RESPOND
json
{
"antiCollision": {
"shieldFlag": true
},
"weldEnabled": true,
"spotWeldEnabled": true,
"feedWire": true,
"aspiration": true,
"returnWire": true,
"pistolSwitch": 0,
"arcingSuccess": 1,
"handWireFeed": -1,
"weldCurrent": 1.0,
"weldVoltage": 2.0,
"weldRunTime": 3.3,
"weldRunDutyRatio": 4.4,
"robot": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| antiCollision.shieldFlag | bool | 屏蔽防碰撞 |
| weldEnabled | bool | 焊接使能 |
| spotWeldEnabled | bool | 点焊使能 |
| feedWire | bool | 送丝 |
| aspiration | bool | 送气 |
| returnWire | bool | 退丝 |
| pistolSwitch | int | 焊枪开关状态:0-低(红),1-高(绿),-1-无(灰) |
| arcingSuccess | int | 引弧成功 |
| handWireFeed | int | 手动送丝 |
| weldCurrent | double | 焊接电流 |
| weldVoltage | double | 焊接电压 |
| weldRunTime | double | 焊接时间 |
| weldRunDutyRatio | double | 焊接占空比 |
| robot | int | 机器人编号 |
点焊参数
点焊参数设置:
0x4017 WELD_SHOTPARM_SET
json
{
"spotWeldCurrent": 0,
"spotWeldVoltage": 0,
"spotWeldMaxTime": 0
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| spotWeldCurrent | double | 点焊电流 |
| spotWeldVoltage | double | 点焊电压 |
| spotWeldMaxTime | double | 点焊最大时间:1-10 |
电流电压直接设置
0x4018 WELD_CURVOL_DIRECTSET
json
{
"type": 1,
"value": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| type | int | 1-设置电流,2-设置电压 |
| value | double | 值 |
设置焊机模式
监控设置焊机模式:
0x401A WELD_HANDOP_SET
json
{
"type": 1,
"value": 0,
"robot": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| type | int | 1-焊接使能,2-手动起弧,3-手动点焊,4-送丝,5-退丝,6-送气,7-故障复位 |
| value | int | bool型 |
| robot | int | 机器人编号 |
焊机参数查询:
0x401B WELD_HANDOP_INQUIRE
data:无
焊机参数数据返回:
0x401C WELD_HANDOP_RESPOND
json
{
"weldEnabled": true,
"spotWeldEnabled": true,
"spotWeldCurrent": 33.3,
"spotWeldVoltage": -20.2,
"spotWeldMaxTime": 0.5,
"newCurrent": 33.3,
"newVoltage": -20.2,
"feedWire": true,
"returnWire": true,
"aspiration": true
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| weldEnabled | bool | 焊接使能 |
| spotWeldEnabled | bool | 点焊使能 |
| spotWeldCurrent | double | 点焊电流 |
| spotWeldVoltage | double | 点焊电压 |
| spotWeldMaxTime | double | 点焊最大时间:0-1秒 |
| newCurrent | double | 设置电流 |
| newVoltage | double | 设置电压 |
| feedWire | bool | 送丝 |
| returnWire | bool | 退丝 |
| aspiration | bool | 送气 |
焊机选择设置
0x401D WELD_MACHINE_CHOOSE_SET
json
{
"controlMode": 1,
"monufactor": "瑞凌",
"weldingMode": 1,
"commMode": "ModBus RTU",
"slaveIP": "192.168.1.15",
"slaveid": 1,
"port": 21,
"baudRate": 115200,
"RILAND": {
"materialWireDiameterGasSelect": 1
}
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| controlMode | int | 0-模拟控制,1-数字控制 |
| monufactor | string | 焊机厂家 |
| weldingMode | int | 0-分别,1-一元化 |
| commMode | string | 通讯方式:CAN,ModBus RTU,Modbus TCP,EtherCAT |
| slaveIP | string | 从站IP |
| slaveid | int | 从站ID |
| port | int | 端口号 |
| baudRate | int | 波特率 |
| RILAND.materialWireDiameterGasSelect | int | 材料/丝径/气体选择 |
查询:
0x401E WELD_MACHINE_CHOOSE_INQUIRE
data:无
返回:
0x401F WELD_MACHINE_CHOOSE_RESPOND
json
{
"controlMode": 0,
"monufactor": "麦格米特",
"weldingMode": 0,
"commMode": "CAN",
"slaveIP": "192.168.1.14",
"slaveid": 1,
"port": 2,
"baudRate": 115200,
"monufactorList": ["麦格米特", "美佳尼克", "欢颜"],
"RILAND": {
"materialWireDiameterGasSelect": 1
}
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| controlMode | int | 0-模拟控制,1-数字控制 |
| monufactor | string | 焊机厂家 |
| weldingMode | int | 0-分别,1-一元化 |
| commMode | string | 通讯方式 |
| slaveIP | string | 从站IP |
| slaveid | int | 从站ID |
| port | int | 端口号 |
| baudRate | int | 波特率 |
| monufactorList | array | 焊机厂家列表 |
| RILAND.materialWireDiameterGasSelect | int | 材料/丝径/气体选择 |
焊机通讯状态查询
0x4022 WELD_MACHINE_CONNECT_STATUS_INQUIRE
data:无
返回:
0x4023 WELD_MACHINE_CONNECT_STATUS_RESPOND
json
{
"welder": [
{
"status": 0
}
]
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| welder[].status | int | 焊机通讯状态 |
焊接参数、摆焊参数注释查询
0x4024 WELDPARAMETERNOTES_INQUIRE
json
{}返回:
0x4025 WELDPARAMETERNOTES_RESPOND
json
{
"weldNotes": ["112", "223", "", ""],
"weavParameterNotes": ["112", "223", "", ""]
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| weldNotes | array | 焊接参数注释 |
| weavParameterNotes | array | 摆焊参数注释 |
焊接微调整查询
0x4029 WELDADJUSTMENT_INQUIRE
json
{}返回:
0x402A WELDADJUSTMENT_RESPOND
json
{
"weav": {
"left_stay_time": [0, 1.0],
"right_stay_time": [0, 1.0],
"swing_amplitude": [0, 1.0],
"swing_frequency": [0, 1.0]
},
"weld": {
"weld_current": [0.0, 0.0],
"weld_voltage": [0.0, 0.0]
}
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| weav.left_stay_time | array | 左停留时间:[最小值, 最大值] |
| weav.right_stay_time | array | 右停留时间:[最小值, 最大值] |
| weav.swing_amplitude | array | 摆焊振幅:[最小值, 最大值] |
| weav.swing_frequency | array | 摆焊频率:[最小值, 最大值] |
| weld.weld_current | array | 焊接电流:[最小值, 最大值] |
| weld.weld_voltage | array | 焊接电压:[最小值, 最大值] |
焊接微调整
注:运行模式使用,需要在焊接装备-微调整设参
0x402B WELDADJUSTMENT_SET
json
{
"name": "weld_current",
"type": 0
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| name | string | 参数名:weld_current-焊接电流,weld_voltage-焊接电压 |
| type | int | 0-增加,1-减少,2-将参数存入配置文件 |
相贯线焊接标定工件坐标系
坐标标定设置:
0x4051 CYLDINTERSEC_WELDING_CALIBRATION_SET
json
{
"workPieceNum": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| workPieceNum | int | 工件号 |
相贯线点击标定该点:
0x4052 CYLDINTERSEC_WELDING_CALIBRATION_INQUIRE
json
{
"workPieceNum": 1,
"pointNum": 0
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| workPieceNum | int | 工件号 |
| pointNum | int | 点号:0~5 |
回复:
0x4053 CYLDINTERSEC_WELDING_CALIBRATION_RESPOND
json
{
"workPieceNum": 1,
"pointNum": 0,
"pos": [0, 0, 0, 0, 0, 0]
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| workPieceNum | int | 工件号 |
| pointNum | int | 点号:0~5 |
| pos | array | 当前标定的点位 |
标定结果返回:
0x4054 CYLDINTERSEC_WELDING_CALIBRATION_RESULT
json
{
"result": true,
"workPieceNum": 1,
"cylinderIntersectLineParam": {
"R": 7.873846098073,
"alpha": 39.072395710472,
"e": 9.866955106008,
"r": 2.527536958062
},
"WorkPieceCoord": [459.926870686929, -2.5264800349, 632.105073382516, -0.000000248216, 0.000000069098, 2.768560904971]
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| result | bool | 标定结果 |
| workPieceNum | int | 工件号 |
| cylinderIntersectLineParam.R | double | 相贯线参数R |
| cylinderIntersectLineParam.alpha | double | 相贯线参数alpha |
| cylinderIntersectLineParam.e | double | 相贯线参数e |
| cylinderIntersectLineParam.r | double | 相贯线参数r |
| WorkPieceCoord | array | 工件坐标系 |
相贯线工件参数设置
0x4055 CYLDINTERSEC_WELDING_PARAMETER_SET
json
{
"workPieceNum": 1,
"cylinderIntersectLineParam": {
"R": 0,
"r": 0,
"e": 0,
"alpha": 0
},
"WorkPieceCoord": [0, 0, 0, 0, 0, 0]
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| workPieceNum | int | 工件号 |
| cylinderIntersectLineParam.R | double | 相贯线参数R |
| cylinderIntersectLineParam.r | double | 相贯线参数r |
| cylinderIntersectLineParam.e | double | 相贯线参数e |
| cylinderIntersectLineParam.alpha | double | 相贯线参数alpha |
| WorkPieceCoord | array | 工件坐标系 |
相贯线工件参数查询:
0x4056 CYLDINTERSEC_WELDING_PARAMETER_INQUIRE
json
{
"workPieceNum": 1
}相贯线工件参数回复:
0x4057 CYLDINTERSEC_WELDING_PARAMETER_RESPOND
同:0x4055
相贯线焊枪参数设置
0x4061 CYLDINTERSEC_WELDINGGUN_PARAMETER_SET
json
{
"WeldingGunParam": {
"alpha": 1.0,
"beta": 2.0,
"gama": 3.0,
"pos_hf_hq": [4.0, 5.0, 6.0]
},
"startAngle": 7.0,
"totalAngle": 8.0,
"workPieceNum": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| WeldingGunParam.alpha | double | 焊枪角度alpha |
| WeldingGunParam.beta | double | 焊枪角度beta |
| WeldingGunParam.gama | double | 焊枪角度gama |
| WeldingGunParam.pos_hf_hq | array | 焊枪位置 |
| startAngle | double | 起始角度 |
| totalAngle | double | 总角度 |
| workPieceNum | int | 工件号 |
相贯线焊枪参数查询:
0x4062 CYLDINTERSEC_WELDINGGUN_PARAMETER_INQUIRE
json
{
"workPieceNum": 1
}相贯线焊枪参数回复:
0x4063 CYLDINTERSEC_WELDINGGUN_PARAMETER_RESPOND
同:0x4061
相贯线工艺标志量设置
区分有无变位机的相贯线工艺的标志量设置:
0x4065 CYLDINTERSEC_WITHSYNCPOSFLAG_SET
json
{
"workPieceNum": 1,
"withSyncPosFlag": 1
}参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| workPieceNum | int | 工艺号 |
| withSyncPosFlag | int | 0-不带变位机,1-带变位机 |
坐标标定查询:
0x4066 CYLDINTERSEC_WITHSYNCPOSFLAG_INQUIRE
json
{
"workPieceNum": 1
}回复:
0x4067 CYLDINTERSEC_WITHSYNCPOSFLAG_RESPOND
json
{
"workPieceNum": 1,
"withSyncPosFlag": 1
}返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| workPieceNum | int | 工艺号 |
| withSyncPosFlag | int | 0-不带变位机,1-带变位机 |