Deep Trekker BRIDGE API - v1.0.3
    Preparing search index...

    Type Alias CrawlerCameraHead

    CrawlerCameraHead: {
        joint1MotorDiagnostics?: MotorDiagnostics;
        joint2MotorDiagnostics?: MotorDiagnostics;
        light?: Light;
        natural?: boolean;
        orientation?: CameraHeadOrientation;
        pan?: CalibratableRotaryJoint;
        panMotorDiagnostics?: MotorDiagnostics;
        tilt?: RotaryJoint;
        tiltMotorDiagnostics?: MotorDiagnostics;
    } & CameraHead & Calibratable

    Crawler Camera Head

    Type declaration

    • Optionaljoint1MotorDiagnostics?: MotorDiagnostics

      Joint1 Motor Diagnostics

    • Optionaljoint2MotorDiagnostics?: MotorDiagnostics

      Joint2 Motor Diagnostics

      These are the motor diagnostics of the joint2.

    • Optionallight?: Light

      These are considered the main lights for the camera head/vehicle.

      Light

    • Optionalnatural?: boolean

      Natural camera movement. The vehicle firmware will attempt to smooth out camera head controls when set to true.

      {
      "natural": true
      }
    • Optionalorientation?: CameraHeadOrientation

      Orientation controls

      This is the orientation controls stemming from the physical assembly of the camera.

    • Optionalpan?: CalibratableRotaryJoint

      ↔️ Camera Pan Controls Depending on the calibrated orientation, can either control joint1 or joint2.

      {
      "pan": {
      "speed": 100
      }
      }
    • OptionalpanMotorDiagnostics?: MotorDiagnostics

      Pan Motor Diagnostics

      These are the motor diagnostics of the pan joint.

      Use joint1MotorDiagnostics or joint2MotorDiagnostics (Depending on orientation) instead.

    • Optionaltilt?: RotaryJoint

      ⤴ Camera Tilt Controls Depending on the calibrated orientation, can either control joint1 or joint2.

      {
      "tilt": {
      "speed": 100
      }
      }
    • OptionaltiltMotorDiagnostics?: MotorDiagnostics

      Tilt Motor Diagnostics

      Use joint1MotorDiagnostics or joint2MotorDiagnostics (Depending on orientation) instead.