MAV_CMD_DO_TRIGGER_CONTROL 2003

单张拍摄

python测试脚本

import time
from pymavlink import mavutil

timestamp = int(time.time() * 1000)
millis = int(time.time() * 1000)

master = mavutil.mavlink_connection('udpin:0.0.0.0:14550')
master.wait_heartbeat()
boot_time = time.time()

def shoot():
    master.mav.command_long_send(
        master.target_system,
        master.target_component,
        mavutil.mavlink.MAV_CMD_DO_TRIGGER_CONTROL,
        0,
        0, 0, 0, 0, 0, 0, 0
    )

shoot()
作者:bai  创建时间:2024-09-14 16:02
最后编辑:bai  更新时间:2024-09-27 11:15