Python:
System Installation Method ConfigurationInstallPos
It is used to configure the installation method and query the end effector software version. The RealMan robotic arm supports different installation methods. However, the robot's dynamic model parameters and frame directions may vary depending on the installation method. The following is a detailed description of the member functions of DragTeach
to configure the installation method and query the end effector software version, including the method prototype, parameter description, return value, and usage demo.
Set installation method parametersrm_set_install_pose()
- Method prototype:
rm_set_install_pose(self, x: float, y: float, z: float) -> int:
- Parameter description:
Parameter | Type | Description |
---|---|---|
x | float | Rotation angle, in °; |
y | float | Pitch angle, in °; |
z | float | Azimuth angle, in °; |
- Return value:
int: state codes executed by functions:
0 represents success. For other error codes, please refer to the API2 Error Codes.
- Usage demo
from Robotic_Arm.rm_robot_interface import *
# Instantiate the RoboticArm class
arm = RoboticArm(rm_thread_mode_e.RM_TRIPLE_MODE_E)
# Create the robotic arm connection and print the connection ID
handle = arm.rm_create_robot_arm("192.168.1.18", 8080)
print(handle.id)
print(arm.rm_set_install_pose(0, 90, 0))
arm.rm_delete_robot_arm()
Get installation method parametersrm_get_install_pose()
- Method prototype:
rm_get_install_pose(self) -> dict[str, any]:
- Return value:
dict[str,any]: a dictionary containing the following keys.
return_code()
: a state code executed by functions.
0 represents success. For other error codes, please refer to the API2 Error Codes.
- Pose angle value.
Parameter | Type | Description |
---|---|---|
x | float | Rotation angle, in °; |
y | float | Pitch angle, in °; |
z | float | Azimuth angle, in °; |
- Usage demo
from Robotic_Arm.rm_robot_interface import *
# Instantiate the RoboticArm class
arm = RoboticArm(rm_thread_mode_e.RM_TRIPLE_MODE_E)
# Create the robotic arm connection and print the connection ID
handle = arm.rm_create_robot_arm("192.168.1.18", 8080)
print(handle.id)
print(arm.rm_get_install_pose())
arm.rm_delete_robot_arm()
Get the joint software version rm_get_joint_software_version()
The joint software version number obtained is in string format, and the current joint software version number can be directly obtained.
- Method prototype:
rm_get_joint_software_version(self) -> tuple[int, dict[str, any]]:
- Return value:
tuple[int, dict[str, any]]: A tuple containing two elements:
int: a state code executed by functions. 0 represents success. For other error codes, please refer to the API2 Error Codes.
dict[str, any]: A dictionary containing the following key-value pairs:
Parameter Type Description version
list[int] Reserved parameter, not applicable to the Gen 4 controller. joints_v
list[str] An array of strings representing the software version numbers of each joint obtained.
- Usage demo
from Robotic_Arm.rm_robot_interface import *
# Instantiate the RoboticArm class
arm = RoboticArm(rm_thread_mode_e.RM_TRIPLE_MODE_E)
# Create the robotic arm connection and print the connection ID
handle = arm.rm_create_robot_arm("192.168.1.18", 8080)
print(handle.id)
print(arm.rm_get_joint_software_version())
arm.rm_delete_robot_arm()
Get the software version of the end interface board rm_get_tool_software_version()
The software version number of the end interface board obtained is in string format, and the current end interface board software version number can be directly obtained.
- Method prototype:
rm_get_tool_software_version(self) -> tuple[int,dict[str,any]]:
- Return value:
tuple[int, dict[str, any]]: A tuple containing two elements:
int: a state code executed by functions.
0 represents success. For other error codes, please refer to the API2 Error Codes.
dict[str, any]: A dictionary containing the following key-value pairs:
Parameter Type Description version
list[int] Reserved parameter, not applicable to the Gen 4 controller. tool_v
list[str] Obtained software version number strings of the end interface board.
- Usage demo
from Robotic_Arm.rm_robot_interface import *
# Instantiate the RoboticArm class
arm = RoboticArm(rm_thread_mode_e.RM_TRIPLE_MODE_E)
# Create the robotic arm connection and print the connection ID
handle = arm.rm_create_robot_arm("192.168.1.18", 8080)
print(handle.id)
print(arm.rm_get_tool_software_version())
arm.rm_delete_robot_arm()