APIs/code/common.py
gitea 5a52f6262d 1. 获取类功能都添加 @property 装饰器
2. 修复 Modbus 安全区相关的功能
3. 重新调整了建联的逻辑
2024-09-24 21:30:35 +08:00

103 lines
3.3 KiB
Python

import time
import openapi
import json
import clibs
def initialization():
hr = openapi.HmiRequest()
pd = openapi.PreDos()
# 推送配置文件
robot_params = hr.get_robot_params
robot_type = robot_params["robot_type"]
security_type = robot_params["security_type"]
controller_type = robot_params["controller_type"]
io_device_file = "_".join(["io_device", controller_type, security_type, "1"])
user_settings = "/home/luoshi/bin/controller/user_settings"
interactive_data = f"/home/luoshi/bin/controller/interactive_data/{robot_type}"
config_files = [
"..\\assets\\configs\\fieldbus_device.json",
"..\\assets\\configs\\registers.json",
"..\\assets\\configs\\registers.xml"
]
for config_file in config_files:
filename = config_file.split("\\")[-1]
pd.push_file_to_server(config_file, f"{user_settings}/{filename}")
pd.push_file_to_server(config_file, f"{interactive_data}/{filename}")
io_device_autotest = {'ai_num': 0, 'ao_num': 0, 'di_num': 16, 'do_num': 16, 'extend_attr': {'mode': 'slaver', 'name': 'autotest', 'type': 'MODBUS'}, 'id': 5, 'name': 'autotest', 'type': 6}
io_device_file_local = f"..\\assets\\configs\\{io_device_file}"
io_device_file_local_tmp = f"..\\assets\\configs\\{io_device_file}_tmp"
io_device_file_remote = f"{user_settings}/{io_device_file}"
pd.pull_file_from_server(io_device_file_remote, io_device_file_local)
with open(io_device_file_local, mode="r", encoding="utf-8") as f:
data = json.load(f)
for _ in data["device_list"]:
if _["extend_attr"].get("name", None) == "autotest":
break
else:
data["device_list"].append(io_device_autotest)
with open(io_device_file_local_tmp, mode="w", encoding="utf-8") as f_tmp:
json.dump(data, f_tmp, indent=4)
pd.push_file_to_server(io_device_file_local_tmp, f"{user_settings}/{io_device_file}")
pd.push_file_to_server(io_device_file_local_tmp, f"{interactive_data}/{io_device_file}")
hr.reload_io()
hr.reload_registers()
hr.reload_fieldbus()
hr.set_fieldbus_device_params("autotest", True)
md = openapi.ModbusRequest()
# 触发急停并恢复
md.r_soft_estop(0)
md.r_soft_estop(1)
# 断开示教器连接
hr.switch_tp_mode("without")
# 清空 system IO 配置
hr.update_system_io_configuration([], [], [], [], [])
# 关闭缩减模式
md.r_reduced_mode(0)
# 关闭安全区域
hr.set_safety_area_overall(False)
hr.set_safety_area_signal(False)
for i in range(10):
hr.set_safety_area_enable(i, False)
# 打开外部通信
hr.set_socket_params(True, "", "name", "8080", "\r", 1, True, True, 0, 10)
# 关闭拖动
hr.set_drag_params(False, 1, 2)
# 关闭碰撞检测
hr.set_collision_params(False, 0, 1, 100)
# 清除所有错误码
hr.set_filtered_error_code("clear", [])
# 回拖动位姿
hr.switch_operation_mode("manual")
hr.switch_motor_state("on")
hr.set_quickturn_pos(enable_drag=True)
hr.move2quickturn("drag")
while True:
if md.w_robot_is_moving:
time.sleep(1)
else:
break
hr.stop_move(1)
hr.switch_motor_state("off")
hr.close()
# 清除所有告警
md.r_clear_alarm()
initialization()