View Source Tello.CyberTello.State.MissionPad (Tello v0.1.0)

A sub-struct of Tello.CyberTello.State 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
  • detection_mode - The detection mode, available: :downward, :forward, :both.

Link to this section Summary

Link to this section Types

@type t() :: %Tello.CyberTello.State.MissionPad{
  detection_mode: :downward | :forward | :both,
  id: binary(),
  x: integer(),
  y: integer(),
  z: integer()
}