View Source Tello.StatusListener.Status.MissionPad (Tello v0.3.0)

A sub-struct of Tello.StatusListener.Status to represent the detected Mission Pad.

  • id - Mission Pad ID
  • x - The x coordinate detected on the Mission Pad
  • y - The y coordinate detected on the Mission Pad
  • z - The z coordinate detected on the Mission Pad
  • pitch - The pitch based on the Mission Pad
  • roll - The roll based on the Mission Pad
  • yaw - The yaw based on the Mission Pad

Link to this section Summary

Link to this section Types

@type t() :: %Tello.StatusListener.Status.MissionPad{
  id: binary(),
  pitch: integer(),
  roll: integer(),
  x: integer(),
  y: integer(),
  yaw: integer(),
  z: integer()
}