rospy.init_node("offboard_node")
for i in range(10):
if self.current_heading is not None:
break
else:
print("Waiting for initialization.")
time.sleep(0.5)
self.cur_target_pose = self.construct_target(self.local_pose.pose.position.x,
self.local_pose.pose.position.y,
self.local_pose.pose.position.z + self.takeoff_height,
self.current_heading)
然后程序将解锁机体并自动切换到offboard模式:
for i in range(100):
self.local_target_pub.publish(self.cur_target_pose)
self.arm_state = self.arm()
self.offboard_state = self.offboard()
time.sleep(0.05)
此后,程序将进入一个while循环来响应来自指令接口的不同命令,包括位置设定点、转弯、悬停等。
while self.arm_state and self.offboard_state and (rospy.is_shutdown() is False):
self.local_target_pub.publish(self.cur_target_pose)
if (self.state is "LAND") and (self.local_pose.pose.position.z < -1.0):
if(self.disarm()):
self.state = "DISARMED"
time.sleep(0.05)
# launch a new terminal
cd ~/src/Firmware
make px4_sitl_default gazebo
# launch a new terminal
roslaunch mavros px4.launch fcu_url:="udp://:14540@127.0.0.1:14557"
# launch a new terminal
cd ~/src/uav_workspace/pythonuav_ros
python3 px4_mavros_run.py
# launch a new terminal
cd ~/src/uav_workspace/pythonuav_ros
python3 commander.py
4. 实际飞行
建议用户严格按照以下流程完成测试:
用绑带固定好电池,确保在飞行过程中不会掉落。
确保所有开关都处于初始位置,且油门拉至最低。
上电开机。
等待 GPS 锁星:通常 2-3 分钟后我们会听到提示音,并且 pixhawk 中的主 LED 会变绿。
# launch a terminal (users can source customized mavros & mavlink workspace alternatively)
roslaunch mavros px4.launch fcu_url:="/dev/ttyPixhawk:921600"
# launch a new terminal
cd ~/src/uav_workspace/pythonuav_ros
python3 px4_mavros_run.py
# launch a new terminal
cd ~/src/uav_workspace/pythonuav_ros
python3 commander.py