diff --git a/README.md b/README.md index f2620f3fe..a7dca83da 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The SDK consists of: - [Spot API protocol definition](protos/bosdyn/api/README.md). This reference guide covers the details of the protocol applications used to communicate to Spot. Application developers who wish to use a language other than Python can implement clients that speak the protocol. - [Spot SDK Repository](https://github.com/boston-dynamics/spot-sdk). The GitHub repo where all of the Spot SDK code is hosted. -This is version 4.0.1 of the SDK. Please review the [Release Notes](docs/release_notes.md) to see what has changed. +This is version 4.0.2 of the SDK. Please review the [Release Notes](docs/release_notes.md) to see what has changed. ## Contents diff --git a/VERSION b/VERSION index 1454f6ed4..4d54daddb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.1 +4.0.2 diff --git a/docs/concepts/README.md b/docs/concepts/README.md index 6ddf4a219..17d3605e9 100644 --- a/docs/concepts/README.md +++ b/docs/concepts/README.md @@ -46,5 +46,6 @@ Similar to the Spot API, client applications can be written in many languages an - [Faults](faults.md) - [Autonomy services](autonomy/README.md) - [Choreography](choreography/README.md) +- [Joint Control API](joint_control/README.md) - [Spot Arm](arm/README.md) - [Spot Data](data.md) diff --git a/docs/concepts/joint_control/README.md b/docs/concepts/joint_control/README.md new file mode 100644 index 000000000..9504f4349 --- /dev/null +++ b/docs/concepts/joint_control/README.md @@ -0,0 +1,84 @@ + + +# Joint Control API (Beta) + +The Joint Control API provides developers with low-level control of the robot through high-rate, low-latency RPC streams. This controlled-access API requires a special-permissions license and is compatible with the Boston Dynamics SDK, available in either C++ or Python. + +## Contents + +Information regarding joint ordering, maximum torques, and robot morphology. + +- [Supplemental Robot Information](supplemental_data.md) + +## Components + +- [Streaming Robot State Messages](../../../protos/bosdyn/api/robot_state.proto#robotstatestreamresponse): Structure for receiving lightweight robot state messages. +- [Streaming Robot Command Messages](../../../protos/bosdyn/api/basic_command.proto#jointcommand-updaterequest): Structure for sending joint commands, gains, and leg contact advice. +- [Streaming State Client](../../../python/bosdyn-client/src/bosdyn/client/robot_state.py#bosdyn.client.robot_state.RobotStateStreamingClient): Python client for receiving lightweight robot state. +- [Streaming Command Client](../../../python/bosdyn-client/src/bosdyn/client/robot_command.py#bosdyn.client.robot_command.RobotCommandStreamingClient) Python client for streaming robot commands. + +## Usage + +To utilize the Joint Control API: + +- Install the Boston Dynamics SDK. +- Connect to a licensed robot supporting joint control. +- Enable joint control initially via [JointCommand.Request](../../../protos/bosdyn/api/basic_command.proto#jointcommand-request) RPC with the [Command Client](../../../python/bosdyn-client/src/bosdyn/client/robot_command.py#bosdyn.client.robot_command.RobotCommandClient) +- Start streaming [JointCommand.UpdateRequest](../../../protos/bosdyn/api/basic_command.proto#jointcommand-updaterequest) with the [Streaming Command Client](../../../python/bosdyn-client/src/bosdyn/client/robot_command.py#bosdyn.client.robot_command.RobotCommandStreamingClient) + +## Robot Command Stream + +The robot command streaming service allows a user to move the robot with simple commands for each of the robot's joints. The interface provided is very similar to the one that Boston Dynamics' internal developers use to compose complex walking and manipulation behaviors. + +We expose for each joint proportional-derivative + feed-forward (PDFF) control parameters outlined below. + +- **position**: Repeated desired position in radians for each of the robot's joints. +- **velocity**: Repeated desired angular velocity in radians/s for each of the robot's joints. +- **load**: Repeated desired load in Newton-meters for each of the robot's joints. +- **gains**: Repeated gains for each joint. Gains are required to be sent to initialize control, but may be omitted on subsequent commands to save bandwidth if they are unchanged. Each gain contains two parameters: **k_q_p** proportional position error gain in Newton-meters / radian and **k_qd_p** proportional velocity error gain in Newton-meter-second / radian. + +Furthermore, there are shared message fields outlined below. + +- **end_time**: The timestamp (in robot time) when the command will stop executing. This is a required field and used to prevent runaway commands. +- **reference_time**: (Optional) joint trajectory reference time. See **extrapolation_duration** for detailed explanation. If unspecified, this will default to the time the command is received. If the time is in the future, no extrapolation will be performed until that time (extrapolation never goes backwards in time.) +- **extrapolation_duration**: (Optional) joint trajectory extrapolation time. If specified, the robot will extrapolate desired position based on desired **velocity**, starting at **reference_time** for at most **extrapolation_duration** (or until **end_time**, whichever is sooner.) +- **user_command_key**: (Optional) Key that can be used for tracking when commands take effect on the robot and calculating loop latencies. Avoid using 0. +- **velocity_safety_limit**: (Optional) Joint velocity safety limit in radians/s. Possibly useful during initial development or gain tuning. If the magnitude of any joint velocity passes the threshold the robot will trigger a behavior fault and go into a safety state. Client must power down the robot or clear the behavior fault via the Robot Command Service. Values less than or equal to 0 will be considered invalid and must be sent in every **UpdateRequest** for use. + +Clients are encouraged to stream new commands at a suitably high frequency (100-333 Hz) to achieve more complex behaviors such as following higher fidelity trajectories or deploying trained machine learning policies. + +#### Note on Closed-Loop Joint Behavior + +- As outlined above, the Joint Control API provides the means to specify PDFF control parameters for each of the joints. At the servo level we utilize the desired positions/velocities/loads to calculate a total desired torque which is tracked in firmware as follows: + +**

load_servo = k_q_p \* (position_desired - position_measured) + k_qd_p \* (velocity_desired - velocity_measured) + load_desired

** + +- A pure proportional-derivative control may be achieved by setting the load commands to zero. Likewise, pure torque control may be achieved by setting the **k_q_p** and **k_qd_p** gains to zero and commanding zero **position** and **velocity**. +- Desired positions and loads are saturated with respect to the robot's kinematic and load limits. See notes below on limits. + +## Robot State Stream + +The robot state streaming service provides a minimal version of robot state suitable for high-rate communications with the robot. Usage note: a user may still find it necessary to request full robot state at a lower rate from the [RobotStateService](../../../docs/concepts/robot_services.md#robot-state), e.g. to gain access to fault information or battery state of charge. + +The morphology of the robot, represented by links and joints, is described through a URDF which can be requested through the [RobotStateService](../../../docs/concepts/robot_services.md#robot-state). This configuration representation is fully expressive of the robot's joint states relative to each other and can be used for visualization, dynamics, or forward kinematics of the robot model. A URDF model with some additional information regarding max joint torques and collision geometries of the robot with an arm can also be found [here](../../../files/spot_with_arm_urdf.zip). + +The streaming robot state includes information about joints, Inertial Measurement Unit (IMU) information, foot contact states, and the kinematic state of the robot. The `GetRobotStateStream` RPC can provide a stream that will pipe data at 333 Hz from the robot. + +- **joint_states**: Measured joint position, velocity, and load of each of the robot's joints. Positions are expressed in radians, velocities in radians/s, and load in Newton-meters. See [here](supplemental_data.md#joint-order) for supplemental information regarding joint order. +- **inertial_state**: Full-rate IMU information including accelerations and angular velocities. For IMU rotation see **kinematic_state.** +- **kinematic_state**: [Provides](../../../protos/bosdyn/api/robot_state.proto#robotstatestreamresponse-kinematicstate) the robot's estimated SE3Pose in both the "odom" and "vision" frames, along with base robot SE3Velocities. For a primer on "odom" and "vision" frames, refer to this [document](../../../docs/concepts/geometry_and_frames.md). These estimates result from the fusion of joint state, IMU data, and perception data on the robot. While every effort has been made to ensure the general accuracy of these estimates, their precision may vary depending on specific robot usage scenarios. Instances where the robot's contact forces are not through its foot, such as sliding on the ground or resting on the knees, may particularly affect the accuracy. +- **contact_states**: Repeated for each foot indicating if the robot thinks that foot is in contact with the ground. +- **last_command**: For loop-timing calculations, the robot echoes back the last user_command_key received from the streaming robot command service. + +## Example Code + +A few simple [examples](../../../python/examples/docs/joint_control_examples.md) illustrating use are shown in: + +- [Robot Squat](../../../python/examples/joint_control/README.md#armless-robot-squat) +- [Wiggle Arm](../../../python/examples/joint_control/README.md#arm-wiggle) diff --git a/docs/concepts/joint_control/knee_torque_limits.md b/docs/concepts/joint_control/knee_torque_limits.md new file mode 100644 index 000000000..e4de06fc6 --- /dev/null +++ b/docs/concepts/joint_control/knee_torque_limits.md @@ -0,0 +1,113 @@ + + +# Knee Torque Limits + +| Knee Angle (rad) | Transmission Ratio (In/Out) | Max Output Torque (N\*m) | +| ---------------- | --------------------------- | ------------------------ | +| -2.792900 | -24.776718 | 37.165077 | +| -2.767442 | -26.290108 | 39.435162 | +| -2.741984 | -27.793369 | 41.690054 | +| -2.716526 | -29.285997 | 43.928996 | +| -2.691068 | -30.767536 | 46.151304 | +| -2.665610 | -32.237423 | 48.356134 | +| -2.640152 | -33.695168 | 50.542751 | +| -2.614694 | -35.140221 | 52.710331 | +| -2.589236 | -36.572052 | 54.858078 | +| -2.563778 | -37.990086 | 56.985128 | +| -2.538320 | -39.393730 | 59.090595 | +| -2.512862 | -40.782406 | 61.173609 | +| -2.487404 | -42.155487 | 63.233231 | +| -2.461946 | -43.512371 | 65.268557 | +| -2.436488 | -44.852371 | 67.278557 | +| -2.411030 | -46.174873 | 69.262310 | +| -2.385572 | -47.479156 | 71.218735 | +| -2.360114 | -48.764549 | 73.146824 | +| -2.334656 | -50.030334 | 75.045502 | +| -2.309198 | -51.275761 | 76.913641 | +| -2.283740 | -52.500103 | 78.750154 | +| -2.258282 | -53.702587 | 80.553881 | +| -2.232824 | -54.882442 | 82.323664 | +| -2.207366 | -56.038860 | 84.058290 | +| -2.181908 | -57.171028 | 85.756542 | +| -2.156450 | -58.278133 | 87.417200 | +| -2.130992 | -59.359314 | 89.038971 | +| -2.105534 | -60.413738 | 90.620607 | +| -2.080076 | -61.440529 | 92.160793 | +| -2.054618 | -62.438812 | 93.658218 | +| -2.029160 | -63.407692 | 95.111538 | +| -2.003702 | -64.346268 | 96.519402 | +| -1.978244 | -65.253670 | 97.880505 | +| -1.952786 | -66.128944 | 99.193417 | +| -1.927328 | -66.971176 | 100.456764 | +| -1.901870 | -67.779457 | 101.669186 | +| -1.876412 | -68.552864 | 102.829296 | +| -1.850954 | -69.290451 | 103.935677 | +| -1.825496 | -69.991325 | 104.986988 | +| -1.800038 | -70.654541 | 105.981812 | +| -1.774580 | -71.279190 | 106.918785 | +| -1.749122 | -71.864319 | 107.796478 | +| -1.723664 | -72.409088 | 108.613632 | +| -1.698206 | -72.912567 | 109.368851 | +| -1.672748 | -73.373871 | 110.060806 | +| -1.647290 | -73.792130 | 110.688194 | +| -1.621832 | -74.166512 | 111.249767 | +| -1.596374 | -74.496147 | 111.744221 | +| -1.570916 | -74.780251 | 112.170376 | +| -1.545458 | -75.017998 | 112.526997 | +| -1.520000 | -75.208656 | 112.812984 | +| -1.494542 | -75.351448 | 113.027172 | +| -1.469084 | -75.445686 | 113.168530 | +| -1.443626 | -75.490677 | 113.236015 | +| -1.418168 | -75.485771 | 113.228657 | +| -1.392710 | -75.430344 | 113.145515 | +| -1.367252 | -75.323830 | 112.985744 | +| -1.341794 | -75.165688 | 112.748531 | +| -1.316336 | -74.955406 | 112.433109 | +| -1.290878 | -74.692551 | 112.038826 | +| -1.265420 | -74.376694 | 111.565041 | +| -1.239962 | -74.007477 | 111.011215 | +| -1.214504 | -73.584579 | 110.376869 | +| -1.189046 | -73.107742 | 109.661613 | +| -1.163588 | -72.576752 | 108.865128 | +| -1.138130 | -71.991455 | 107.987183 | +| -1.112672 | -71.351707 | 107.027561 | +| -1.087214 | -70.657486 | 105.986229 | +| -1.061756 | -69.908813 | 104.863220 | +| -1.036298 | -69.105721 | 103.658581 | +| -1.010840 | -68.248337 | 102.372505 | +| -0.985382 | -67.336861 | 101.005291 | +| -0.959924 | -66.371513 | 99.557270 | +| -0.934466 | -65.352615 | 98.028923 | +| -0.909008 | -64.280533 | 96.420799 | +| -0.883550 | -63.155693 | 94.733540 | +| -0.858092 | -61.978588 | 92.967882 | +| -0.832634 | -60.749775 | 91.124662 | +| -0.807176 | -59.469845 | 89.204767 | +| -0.781718 | -58.139503 | 87.209255 | +| -0.756260 | -56.759487 | 85.139231 | +| -0.730802 | -55.330616 | 82.995924 | +| -0.705344 | -53.853729 | 80.780594 | +| -0.679886 | -52.329796 | 78.494694 | +| -0.654428 | -50.759762 | 76.139643 | +| -0.628970 | -49.144699 | 73.717049 | +| -0.603512 | -47.485737 | 71.228605 | +| -0.578054 | -45.784004 | 68.676006 | +| -0.552596 | -44.040764 | 66.061146 | +| -0.527138 | -42.257267 | 63.385900 | +| -0.501680 | -40.434883 | 60.652325 | +| -0.476222 | -38.574947 | 57.862421 | +| -0.450764 | -36.678982 | 55.018473 | +| -0.425306 | -34.748432 | 52.122648 | +| -0.399848 | -32.784836 | 49.177254 | +| -0.374390 | -30.789810 | 46.184715 | +| -0.348932 | -28.764952 | 43.147428 | +| -0.323474 | -26.711969 | 40.067954 | +| -0.298016 | -24.632576 | 36.948864 | +| -0.272558 | -22.528547 | 33.792821 | +| -0.247100 | -20.401667 | 30.602500 | diff --git a/docs/concepts/joint_control/spot_with_arm.png b/docs/concepts/joint_control/spot_with_arm.png new file mode 100644 index 000000000..50b3abbf9 Binary files /dev/null and b/docs/concepts/joint_control/spot_with_arm.png differ diff --git a/docs/concepts/joint_control/supplemental_data.md b/docs/concepts/joint_control/supplemental_data.md new file mode 100644 index 000000000..5cae89a54 --- /dev/null +++ b/docs/concepts/joint_control/supplemental_data.md @@ -0,0 +1,61 @@ + + +# Supplemental Data + +Contains additional simulation data for the development of control algorithms for the Spot robot and simulations. +![Spot URDF](spot_with_arm.png) + +## Contents + +Table for the variable max knee torque due to the knee linkage. + +- [Knee Torque Limits](knee_torque_limits.md) + +## Joint Order + +All repeated fields for commands and state are in a consistent order as outlined in [spot_constants.proto](../../../protos/bosdyn/api/spot/spot_constants.proto). + +## Robot Morphology + +Robot structure can be found by inspecting the full URDF located [here](../../../files/spot_with_arm_urdf.zip). **Note:** This URDF contains additional information compared to what is available through the [RobotStateService](../../../docs/concepts/robot_services.md#robot-state) and the URDF for an armless robot located [here](../../../files/spot_base_urdf.zip). + +## Joint Transmission Details + +### Joint Gear Ratios and Max Motor Torque + +Most joints are simply actuated with a constant gear ratio. + +| Joint | Gear Ratio | Max motor torque | +| ----- | ---------- | ---------------- | +| HX | 51 | 0.88 | +| HY | 51 | 0.88 | +| KN | variable | 1.50 | +| SH0 | 101 | 0.89 | +| SH1 | coupled | 0.89 | +| EL0 | coupled | 0.89 | +| EL1 | 101 | 0.23 | +| WR0 | 101 | 0.23 | +| WR1 | 101 | 0.23 | +| F1X | 56.55 | 0.20 | + +### Knee Joints + +The Spot robot knee is actuated using a ball-screw and push-rod mechanism connected to the lower leg. Due to the push-rod's geometry, the maximum torque achievable varies depending on the configuration. The knee exhibits its greatest strength at the midpoint of its range and its weakest when fully flexed or extended. For details on the variable transmission ratio, refer to the file available [here](knee_torque_limits.md). This transmission ratio describes the motor input to knee angle output relationship as: + +``` +Tr(q_kn) = qd_motor / qd_kn +``` + +### Coupled SH1/EL0 Joints + +The SH1/EL0 joints are driven by a coupled set of input actuators. The 2x2 Jacobian describing the output velocities is: + +``` +[qd_sh1; qd_el0] = (1/101) * [1 0; -1 1] * [qd_motor0; qd_motor1] +``` diff --git a/docs/html/.buildinfo b/docs/html/.buildinfo index f6c7bacac..e30de2690 100644 --- a/docs/html/.buildinfo +++ b/docs/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 4c97b22c7a4ac743f2b4785d9887c8d6 +config: 77cafe9d9e3c606cba14ec4e439e933a tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/html/README.html b/docs/html/README.html index 99878623c..35aad6fe9 100644 --- a/docs/html/README.html +++ b/docs/html/README.html @@ -4,7 +4,7 @@ - Spot SDK — Spot 4.0.1 documentation + Spot SDK — Spot 4.0.2 documentation @@ -37,7 +37,7 @@
- 4.0.1 + 4.0.2
@@ -95,6 +95,13 @@
  • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit -

    This is version 4.0.1 of the SDK. Please review the Release Notes to see what has changed.

    +

    This is version 4.0.2 of the SDK. Please review the Release Notes to see what has changed.

    Contents

    diff --git a/docs/html/_images/icon.png b/docs/html/_images/icon.png index c7028f0e6..23ce4e755 100644 Binary files a/docs/html/_images/icon.png and b/docs/html/_images/icon.png differ diff --git a/docs/html/_images/spot_with_arm.png b/docs/html/_images/spot_with_arm.png new file mode 100644 index 000000000..50b3abbf9 Binary files /dev/null and b/docs/html/_images/spot_with_arm.png differ diff --git a/docs/html/_modules/bosdyn/bddf/base_data_reader.html b/docs/html/_modules/bosdyn/bddf/base_data_reader.html index 0ca988182..85d3d47a1 100644 --- a/docs/html/_modules/bosdyn/bddf/base_data_reader.html +++ b/docs/html/_modules/bosdyn/bddf/base_data_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.base_data_reader — Spot 4.0.1 documentation + bosdyn.bddf.base_data_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
    - 4.0.1 + 4.0.2
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/block_writer.html b/docs/html/_modules/bosdyn/bddf/block_writer.html index 7045ae0db..cdf339e65 100644 --- a/docs/html/_modules/bosdyn/bddf/block_writer.html +++ b/docs/html/_modules/bosdyn/bddf/block_writer.html @@ -3,7 +3,7 @@ - bosdyn.bddf.block_writer — Spot 4.0.1 documentation + bosdyn.bddf.block_writer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/bosdyn.html b/docs/html/_modules/bosdyn/bddf/bosdyn.html index 058ba9159..c6b08a760 100644 --- a/docs/html/_modules/bosdyn/bddf/bosdyn.html +++ b/docs/html/_modules/bosdyn/bddf/bosdyn.html @@ -3,7 +3,7 @@ - bosdyn.bddf.bosdyn — Spot 4.0.1 documentation + bosdyn.bddf.bosdyn — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/common.html b/docs/html/_modules/bosdyn/bddf/common.html index 2c674da48..db2595a58 100644 --- a/docs/html/_modules/bosdyn/bddf/common.html +++ b/docs/html/_modules/bosdyn/bddf/common.html @@ -3,7 +3,7 @@ - bosdyn.bddf.common — Spot 4.0.1 documentation + bosdyn.bddf.common — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/data_reader.html b/docs/html/_modules/bosdyn/bddf/data_reader.html index 770b27023..2fb388d12 100644 --- a/docs/html/_modules/bosdyn/bddf/data_reader.html +++ b/docs/html/_modules/bosdyn/bddf/data_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.data_reader — Spot 4.0.1 documentation + bosdyn.bddf.data_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/data_writer.html b/docs/html/_modules/bosdyn/bddf/data_writer.html index acbd35688..02e76c25b 100644 --- a/docs/html/_modules/bosdyn/bddf/data_writer.html +++ b/docs/html/_modules/bosdyn/bddf/data_writer.html @@ -3,7 +3,7 @@ - bosdyn.bddf.data_writer — Spot 4.0.1 documentation + bosdyn.bddf.data_writer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/file_indexer.html b/docs/html/_modules/bosdyn/bddf/file_indexer.html index 67e43b665..caddf7b4a 100644 --- a/docs/html/_modules/bosdyn/bddf/file_indexer.html +++ b/docs/html/_modules/bosdyn/bddf/file_indexer.html @@ -3,7 +3,7 @@ - bosdyn.bddf.file_indexer — Spot 4.0.1 documentation + bosdyn.bddf.file_indexer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/grpc_proto_reader.html b/docs/html/_modules/bosdyn/bddf/grpc_proto_reader.html index 76052228f..9367f06d5 100644 --- a/docs/html/_modules/bosdyn/bddf/grpc_proto_reader.html +++ b/docs/html/_modules/bosdyn/bddf/grpc_proto_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.grpc_proto_reader — Spot 4.0.1 documentation + bosdyn.bddf.grpc_proto_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/grpc_reader.html b/docs/html/_modules/bosdyn/bddf/grpc_reader.html index cd34bfae7..73422cd9f 100644 --- a/docs/html/_modules/bosdyn/bddf/grpc_reader.html +++ b/docs/html/_modules/bosdyn/bddf/grpc_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.grpc_reader — Spot 4.0.1 documentation + bosdyn.bddf.grpc_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/grpc_service_reader.html b/docs/html/_modules/bosdyn/bddf/grpc_service_reader.html index 46a9ed080..615278ff2 100644 --- a/docs/html/_modules/bosdyn/bddf/grpc_service_reader.html +++ b/docs/html/_modules/bosdyn/bddf/grpc_service_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.grpc_service_reader — Spot 4.0.1 documentation + bosdyn.bddf.grpc_service_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/grpc_service_writer.html b/docs/html/_modules/bosdyn/bddf/grpc_service_writer.html index 5aa412cb1..00f6a1331 100644 --- a/docs/html/_modules/bosdyn/bddf/grpc_service_writer.html +++ b/docs/html/_modules/bosdyn/bddf/grpc_service_writer.html @@ -3,7 +3,7 @@ - bosdyn.bddf.grpc_service_writer — Spot 4.0.1 documentation + bosdyn.bddf.grpc_service_writer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/message_reader.html b/docs/html/_modules/bosdyn/bddf/message_reader.html index 591d5199f..7925edce6 100644 --- a/docs/html/_modules/bosdyn/bddf/message_reader.html +++ b/docs/html/_modules/bosdyn/bddf/message_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.message_reader — Spot 4.0.1 documentation + bosdyn.bddf.message_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/pod_series_reader.html b/docs/html/_modules/bosdyn/bddf/pod_series_reader.html index f5cb5caaa..65873655f 100644 --- a/docs/html/_modules/bosdyn/bddf/pod_series_reader.html +++ b/docs/html/_modules/bosdyn/bddf/pod_series_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.pod_series_reader — Spot 4.0.1 documentation + bosdyn.bddf.pod_series_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/pod_series_writer.html b/docs/html/_modules/bosdyn/bddf/pod_series_writer.html index 97f3c52af..e769dfcb0 100644 --- a/docs/html/_modules/bosdyn/bddf/pod_series_writer.html +++ b/docs/html/_modules/bosdyn/bddf/pod_series_writer.html @@ -3,7 +3,7 @@ - bosdyn.bddf.pod_series_writer — Spot 4.0.1 documentation + bosdyn.bddf.pod_series_writer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/protobuf_channel_reader.html b/docs/html/_modules/bosdyn/bddf/protobuf_channel_reader.html index f7637d384..8c168cbfb 100644 --- a/docs/html/_modules/bosdyn/bddf/protobuf_channel_reader.html +++ b/docs/html/_modules/bosdyn/bddf/protobuf_channel_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.protobuf_channel_reader — Spot 4.0.1 documentation + bosdyn.bddf.protobuf_channel_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/protobuf_reader.html b/docs/html/_modules/bosdyn/bddf/protobuf_reader.html index 7228c6ee6..62fb4f575 100644 --- a/docs/html/_modules/bosdyn/bddf/protobuf_reader.html +++ b/docs/html/_modules/bosdyn/bddf/protobuf_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.protobuf_reader — Spot 4.0.1 documentation + bosdyn.bddf.protobuf_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/protobuf_series_writer.html b/docs/html/_modules/bosdyn/bddf/protobuf_series_writer.html index 0eae6979a..0eba47f24 100644 --- a/docs/html/_modules/bosdyn/bddf/protobuf_series_writer.html +++ b/docs/html/_modules/bosdyn/bddf/protobuf_series_writer.html @@ -3,7 +3,7 @@ - bosdyn.bddf.protobuf_series_writer — Spot 4.0.1 documentation + bosdyn.bddf.protobuf_series_writer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/bddf/stream_data_reader.html b/docs/html/_modules/bosdyn/bddf/stream_data_reader.html index 212da3d39..6e41977dd 100644 --- a/docs/html/_modules/bosdyn/bddf/stream_data_reader.html +++ b/docs/html/_modules/bosdyn/bddf/stream_data_reader.html @@ -3,7 +3,7 @@ - bosdyn.bddf.stream_data_reader — Spot 4.0.1 documentation + bosdyn.bddf.stream_data_reader — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/choreography/client/animation_file_conversion_helpers.html b/docs/html/_modules/bosdyn/choreography/client/animation_file_conversion_helpers.html index 73588feda..7c8454dd1 100644 --- a/docs/html/_modules/bosdyn/choreography/client/animation_file_conversion_helpers.html +++ b/docs/html/_modules/bosdyn/choreography/client/animation_file_conversion_helpers.html @@ -3,7 +3,7 @@ - bosdyn.choreography.client.animation_file_conversion_helpers — Spot 4.0.1 documentation + bosdyn.choreography.client.animation_file_conversion_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/choreography/client/animation_file_to_proto.html b/docs/html/_modules/bosdyn/choreography/client/animation_file_to_proto.html index 2b052fbd8..4f2beaa22 100644 --- a/docs/html/_modules/bosdyn/choreography/client/animation_file_to_proto.html +++ b/docs/html/_modules/bosdyn/choreography/client/animation_file_to_proto.html @@ -3,7 +3,7 @@ - bosdyn.choreography.client.animation_file_to_proto — Spot 4.0.1 documentation + bosdyn.choreography.client.animation_file_to_proto — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/choreography/client/choreography.html b/docs/html/_modules/bosdyn/choreography/client/choreography.html index e6b6913eb..aa474a4e7 100644 --- a/docs/html/_modules/bosdyn/choreography/client/choreography.html +++ b/docs/html/_modules/bosdyn/choreography/client/choreography.html @@ -3,7 +3,7 @@ - bosdyn.choreography.client.choreography — Spot 4.0.1 documentation + bosdyn.choreography.client.choreography — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -1023,13 +1032,17 @@

      Source code for bosdyn.choreography.client.choreography

      copy_request=False, **kwargs)
      -
      [docs] def get_choreography_sequence(self, seq_name, **kwargs): +
      [docs] def get_choreography_sequence(self, seq_name, return_animation_names_only=False, **kwargs): """Get a sequence currently known by the robot, response includes the full ChoreographySequence with the given name and any Animations used in the sequence. Args: seq_name (string): the name of the sequence to return. + return_animation_names_only (bool): If True, skip returning a list of the complete + Animation protos required by the sequence and leave the 'animated_moves' field of + the response empty. (The repeated string field, 'animation_names' for the list + of the names of required animations will still be returned). Returns: The full GetChoreographySequenceResponse proto. @@ -1037,6 +1050,7 @@

      Source code for bosdyn.choreography.client.choreography

      req = choreography_sequence_pb2.GetChoreographySequenceRequest() req.sequence_name = seq_name + req.return_animation_names_only = return_animation_names_only return self.call( self._stub.GetChoreographySequence, req, @@ -1045,10 +1059,12 @@

      Source code for bosdyn.choreography.client.choreography

      copy_request=False, **kwargs)
      -
      [docs] def get_choreography_sequence_async(self, seq_name, **kwargs): +
      [docs] def get_choreography_sequence_async(self, seq_name, return_animation_names_only=False, + **kwargs): """Async version of get_choreography_sequence().""" req = choreography_sequence_pb2.GetChoreographySequenceRequest() req.sequence_name = seq_name + req.return_animation_names_only = return_animation_names_only return self.call_async( self._stub.GetChoreographySequence, req, @@ -1057,6 +1073,40 @@

      Source code for bosdyn.choreography.client.choreography

      copy_request=False, **kwargs)
      +
      [docs] def get_animation(self, name, **kwargs): + """Get an animation currently known by the robot, response includes + the full Animation proto with the given name. + + Args: + name (string): the name of the animation to return. + + Returns: + The full GetAnimation proto. + """ + + req = choreography_sequence_pb2.GetAnimationRequest() + req.name = name + return self.call( + self._stub.GetAnimation, + req, + value_from_response=None, # Return the complete response message + error_from_response=common_header_errors, + copy_request=False, + **kwargs)
      + +
      [docs] def get_animation_async(self, name, **kwargs): + """Async version of get_animation().""" + + req = choreography_sequence_pb2.GetAnimationRequest() + req.name = name + return self.call_async( + self._stub.GetAnimation, + req, + value_from_response=None, # Return the complete response message + error_from_response=common_header_errors, + copy_request=False, + **kwargs)
      +
      [docs] def save_sequence(self, seq_name, labels=[], **kwargs): """Save an uploaded sequence to the robot. Saved sequences are automatically uploaded to the robot when it boots. diff --git a/docs/html/_modules/bosdyn/client/area_callback.html b/docs/html/_modules/bosdyn/client/area_callback.html index 75b45926c..3428f0980 100644 --- a/docs/html/_modules/bosdyn/client/area_callback.html +++ b/docs/html/_modules/bosdyn/client/area_callback.html @@ -3,7 +3,7 @@ - bosdyn.client.area_callback — Spot 4.0.1 documentation + bosdyn.client.area_callback — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/area_callback_region_handler_base.html b/docs/html/_modules/bosdyn/client/area_callback_region_handler_base.html index 7a46de26b..193d491ce 100644 --- a/docs/html/_modules/bosdyn/client/area_callback_region_handler_base.html +++ b/docs/html/_modules/bosdyn/client/area_callback_region_handler_base.html @@ -3,7 +3,7 @@ - bosdyn.client.area_callback_region_handler_base — Spot 4.0.1 documentation + bosdyn.client.area_callback_region_handler_base — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/area_callback_service_runner.html b/docs/html/_modules/bosdyn/client/area_callback_service_runner.html index 4a8bf15c1..6710b9d29 100644 --- a/docs/html/_modules/bosdyn/client/area_callback_service_runner.html +++ b/docs/html/_modules/bosdyn/client/area_callback_service_runner.html @@ -3,7 +3,7 @@ - bosdyn.client.area_callback_service_runner — Spot 4.0.1 documentation + bosdyn.client.area_callback_service_runner — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/area_callback_service_servicer.html b/docs/html/_modules/bosdyn/client/area_callback_service_servicer.html index d4e3cdf60..98d4a7b78 100644 --- a/docs/html/_modules/bosdyn/client/area_callback_service_servicer.html +++ b/docs/html/_modules/bosdyn/client/area_callback_service_servicer.html @@ -3,7 +3,7 @@ - bosdyn.client.area_callback_service_servicer — Spot 4.0.1 documentation + bosdyn.client.area_callback_service_servicer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/area_callback_service_utils.html b/docs/html/_modules/bosdyn/client/area_callback_service_utils.html index ef6284d67..5e2a232c7 100644 --- a/docs/html/_modules/bosdyn/client/area_callback_service_utils.html +++ b/docs/html/_modules/bosdyn/client/area_callback_service_utils.html @@ -3,7 +3,7 @@ - bosdyn.client.area_callback_service_utils — Spot 4.0.1 documentation + bosdyn.client.area_callback_service_utils — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/arm_surface_contact.html b/docs/html/_modules/bosdyn/client/arm_surface_contact.html index 6c11ce0be..6e5e41eb3 100644 --- a/docs/html/_modules/bosdyn/client/arm_surface_contact.html +++ b/docs/html/_modules/bosdyn/client/arm_surface_contact.html @@ -3,7 +3,7 @@ - bosdyn.client.arm_surface_contact — Spot 4.0.1 documentation + bosdyn.client.arm_surface_contact — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/async_tasks.html b/docs/html/_modules/bosdyn/client/async_tasks.html index c4c8ed5b9..0beda1942 100644 --- a/docs/html/_modules/bosdyn/client/async_tasks.html +++ b/docs/html/_modules/bosdyn/client/async_tasks.html @@ -3,7 +3,7 @@ - bosdyn.client.async_tasks — Spot 4.0.1 documentation + bosdyn.client.async_tasks — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/auth.html b/docs/html/_modules/bosdyn/client/auth.html index aa7ab0e3e..b5cf52ae5 100644 --- a/docs/html/_modules/bosdyn/client/auth.html +++ b/docs/html/_modules/bosdyn/client/auth.html @@ -3,7 +3,7 @@ - bosdyn.client.auth — Spot 4.0.1 documentation + bosdyn.client.auth — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/auto_return.html b/docs/html/_modules/bosdyn/client/auto_return.html index 2cca7212b..f8274ec3e 100644 --- a/docs/html/_modules/bosdyn/client/auto_return.html +++ b/docs/html/_modules/bosdyn/client/auto_return.html @@ -3,7 +3,7 @@ - bosdyn.client.auto_return — Spot 4.0.1 documentation + bosdyn.client.auto_return — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/autowalk.html b/docs/html/_modules/bosdyn/client/autowalk.html index 47120fa36..c9608d5b5 100644 --- a/docs/html/_modules/bosdyn/client/autowalk.html +++ b/docs/html/_modules/bosdyn/client/autowalk.html @@ -3,7 +3,7 @@ - bosdyn.client.autowalk — Spot 4.0.1 documentation + bosdyn.client.autowalk — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/bddf_download.html b/docs/html/_modules/bosdyn/client/bddf_download.html index 01ac09ff0..fe27cc9f3 100644 --- a/docs/html/_modules/bosdyn/client/bddf_download.html +++ b/docs/html/_modules/bosdyn/client/bddf_download.html @@ -3,7 +3,7 @@ - bosdyn.client.bddf_download — Spot 4.0.1 documentation + bosdyn.client.bddf_download — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/channel.html b/docs/html/_modules/bosdyn/client/channel.html index c6fba5c78..8468277fe 100644 --- a/docs/html/_modules/bosdyn/client/channel.html +++ b/docs/html/_modules/bosdyn/client/channel.html @@ -3,7 +3,7 @@ - bosdyn.client.channel — Spot 4.0.1 documentation + bosdyn.client.channel — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/command_line.html b/docs/html/_modules/bosdyn/client/command_line.html index c37084165..b004f8949 100644 --- a/docs/html/_modules/bosdyn/client/command_line.html +++ b/docs/html/_modules/bosdyn/client/command_line.html @@ -3,7 +3,7 @@ - bosdyn.client.command_line — Spot 4.0.1 documentation + bosdyn.client.command_line — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/common.html b/docs/html/_modules/bosdyn/client/common.html index 92ca3991d..0c0bf37bd 100644 --- a/docs/html/_modules/bosdyn/client/common.html +++ b/docs/html/_modules/bosdyn/client/common.html @@ -3,7 +3,7 @@ - bosdyn.client.common — Spot 4.0.1 documentation + bosdyn.client.common — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_acquisition.html b/docs/html/_modules/bosdyn/client/data_acquisition.html index 511816391..aee75140b 100644 --- a/docs/html/_modules/bosdyn/client/data_acquisition.html +++ b/docs/html/_modules/bosdyn/client/data_acquisition.html @@ -3,7 +3,7 @@ - bosdyn.client.data_acquisition — Spot 4.0.1 documentation + bosdyn.client.data_acquisition — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_acquisition_helpers.html b/docs/html/_modules/bosdyn/client/data_acquisition_helpers.html index 84a3c614b..249683e94 100644 --- a/docs/html/_modules/bosdyn/client/data_acquisition_helpers.html +++ b/docs/html/_modules/bosdyn/client/data_acquisition_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.data_acquisition_helpers — Spot 4.0.1 documentation + bosdyn.client.data_acquisition_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_acquisition_plugin.html b/docs/html/_modules/bosdyn/client/data_acquisition_plugin.html index 45cdf5642..c8c64af5a 100644 --- a/docs/html/_modules/bosdyn/client/data_acquisition_plugin.html +++ b/docs/html/_modules/bosdyn/client/data_acquisition_plugin.html @@ -3,7 +3,7 @@ - bosdyn.client.data_acquisition_plugin — Spot 4.0.1 documentation + bosdyn.client.data_acquisition_plugin — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_acquisition_plugin_service.html b/docs/html/_modules/bosdyn/client/data_acquisition_plugin_service.html index 4f5f790b0..ec54212d9 100644 --- a/docs/html/_modules/bosdyn/client/data_acquisition_plugin_service.html +++ b/docs/html/_modules/bosdyn/client/data_acquisition_plugin_service.html @@ -3,7 +3,7 @@ - bosdyn.client.data_acquisition_plugin_service — Spot 4.0.1 documentation + bosdyn.client.data_acquisition_plugin_service — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_acquisition_store.html b/docs/html/_modules/bosdyn/client/data_acquisition_store.html index e444043cf..9c1410bd6 100644 --- a/docs/html/_modules/bosdyn/client/data_acquisition_store.html +++ b/docs/html/_modules/bosdyn/client/data_acquisition_store.html @@ -3,7 +3,7 @@ - bosdyn.client.data_acquisition_store — Spot 4.0.1 documentation + bosdyn.client.data_acquisition_store — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_buffer.html b/docs/html/_modules/bosdyn/client/data_buffer.html index 7ff6b164b..c56fc8acc 100644 --- a/docs/html/_modules/bosdyn/client/data_buffer.html +++ b/docs/html/_modules/bosdyn/client/data_buffer.html @@ -3,7 +3,7 @@ - bosdyn.client.data_buffer — Spot 4.0.1 documentation + bosdyn.client.data_buffer — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_chunk.html b/docs/html/_modules/bosdyn/client/data_chunk.html index adc36c167..534366dde 100644 --- a/docs/html/_modules/bosdyn/client/data_chunk.html +++ b/docs/html/_modules/bosdyn/client/data_chunk.html @@ -3,7 +3,7 @@ - bosdyn.client.data_chunk — Spot 4.0.1 documentation + bosdyn.client.data_chunk — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/data_service.html b/docs/html/_modules/bosdyn/client/data_service.html index c5b03b79d..f3cabdf4f 100644 --- a/docs/html/_modules/bosdyn/client/data_service.html +++ b/docs/html/_modules/bosdyn/client/data_service.html @@ -3,7 +3,7 @@ - bosdyn.client.data_service — Spot 4.0.1 documentation + bosdyn.client.data_service — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/directory.html b/docs/html/_modules/bosdyn/client/directory.html index c6819d02b..36fb88b18 100644 --- a/docs/html/_modules/bosdyn/client/directory.html +++ b/docs/html/_modules/bosdyn/client/directory.html @@ -3,7 +3,7 @@ - bosdyn.client.directory — Spot 4.0.1 documentation + bosdyn.client.directory — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/directory_registration.html b/docs/html/_modules/bosdyn/client/directory_registration.html index ff05ccce9..d64e0fc83 100644 --- a/docs/html/_modules/bosdyn/client/directory_registration.html +++ b/docs/html/_modules/bosdyn/client/directory_registration.html @@ -3,7 +3,7 @@ - bosdyn.client.directory_registration — Spot 4.0.1 documentation + bosdyn.client.directory_registration — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/docking.html b/docs/html/_modules/bosdyn/client/docking.html index b7b913d03..e5a1d251f 100644 --- a/docs/html/_modules/bosdyn/client/docking.html +++ b/docs/html/_modules/bosdyn/client/docking.html @@ -3,7 +3,7 @@ - bosdyn.client.docking — Spot 4.0.1 documentation + bosdyn.client.docking — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/door.html b/docs/html/_modules/bosdyn/client/door.html index c77001a16..f7dc53f4d 100644 --- a/docs/html/_modules/bosdyn/client/door.html +++ b/docs/html/_modules/bosdyn/client/door.html @@ -3,7 +3,7 @@ - bosdyn.client.door — Spot 4.0.1 documentation + bosdyn.client.door — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/estop.html b/docs/html/_modules/bosdyn/client/estop.html index f0c0f58ee..b0f273ec4 100644 --- a/docs/html/_modules/bosdyn/client/estop.html +++ b/docs/html/_modules/bosdyn/client/estop.html @@ -3,7 +3,7 @@ - bosdyn.client.estop — Spot 4.0.1 documentation + bosdyn.client.estop — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/exceptions.html b/docs/html/_modules/bosdyn/client/exceptions.html index 15a200657..e5315e655 100644 --- a/docs/html/_modules/bosdyn/client/exceptions.html +++ b/docs/html/_modules/bosdyn/client/exceptions.html @@ -3,7 +3,7 @@ - bosdyn.client.exceptions — Spot 4.0.1 documentation + bosdyn.client.exceptions — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/fault.html b/docs/html/_modules/bosdyn/client/fault.html index 4c2427029..a6019d038 100644 --- a/docs/html/_modules/bosdyn/client/fault.html +++ b/docs/html/_modules/bosdyn/client/fault.html @@ -3,7 +3,7 @@ - bosdyn.client.fault — Spot 4.0.1 documentation + bosdyn.client.fault — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/frame_helpers.html b/docs/html/_modules/bosdyn/client/frame_helpers.html index 7fa944aa7..7e3f4d0c1 100644 --- a/docs/html/_modules/bosdyn/client/frame_helpers.html +++ b/docs/html/_modules/bosdyn/client/frame_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.frame_helpers — Spot 4.0.1 documentation + bosdyn.client.frame_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/gps/NMEAParser.html b/docs/html/_modules/bosdyn/client/gps/NMEAParser.html index bf4c4f546..73f27e3f2 100644 --- a/docs/html/_modules/bosdyn/client/gps/NMEAParser.html +++ b/docs/html/_modules/bosdyn/client/gps/NMEAParser.html @@ -3,7 +3,7 @@ - bosdyn.client.gps.NMEAParser — Spot 4.0.1 documentation + bosdyn.client.gps.NMEAParser — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -639,6 +648,11 @@

      Source code for bosdyn.client.gps.NMEAParser

      self.last_failed_read_log_time = now
                       continue
       
      +            # if the message does not contain a timestamp attribute, abandon the rest of the logic
      +            # and go to the beginning of the loop
      +            if not hasattr(nmea_msg, 'timestamp'):
      +                continue
      +
                   # Only use NMEA messages that have a timestamp.
                   # For example, GSA and GST messages are not supported.
                   if isinstance(nmea_msg.timestamp, datetime.time):
      diff --git a/docs/html/_modules/bosdyn/client/gps/aggregator_client.html b/docs/html/_modules/bosdyn/client/gps/aggregator_client.html
      index 268019b59..60b25aeb7 100644
      --- a/docs/html/_modules/bosdyn/client/gps/aggregator_client.html
      +++ b/docs/html/_modules/bosdyn/client/gps/aggregator_client.html
      @@ -3,7 +3,7 @@
       
         
         
      -  bosdyn.client.gps.aggregator_client — Spot 4.0.1 documentation
      +  bosdyn.client.gps.aggregator_client — Spot 4.0.2 documentation
             
             
           
      @@ -35,7 +35,7 @@
                     
                 
                     
      - 4.0.1 + 4.0.2
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/gps/gps_listener.html b/docs/html/_modules/bosdyn/client/gps/gps_listener.html index 5553f838b..43bc5c371 100644 --- a/docs/html/_modules/bosdyn/client/gps/gps_listener.html +++ b/docs/html/_modules/bosdyn/client/gps/gps_listener.html @@ -3,7 +3,7 @@ - bosdyn.client.gps.gps_listener — Spot 4.0.1 documentation + bosdyn.client.gps.gps_listener — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -517,17 +526,21 @@

      Source code for bosdyn.client.gps.gps_listener

      # The amount of time to wait before logging another decode error. LOG_THROTTLE_TIME = 2.0 # seconds. - def __init__(self, logger, stream, body_tform_gps): + def __init__(self, logger, stream, body_tform_gps, verbose): self.logger = logger self.stream = stream self.parser = NMEAParser(logger) self.body_tform_gps = body_tform_gps.to_proto() self.last_failed_read_log_time = None + self.verbose = verbose

      [docs] def read_data(self, time_converter: RobotTimeConverter) -> List[GpsDataPoint]: """This function returns an array of new GpsDataPoints.""" try: raw_data = self.stream.readline() + # If the rawdata is a bytes or bytearray object, decode it into a string. + if type(raw_data) is not str: + raw_data = str(raw_data, "utf-8") except UnicodeDecodeError: # Throttle the logs. now = time.time() @@ -543,7 +556,12 @@

      Source code for bosdyn.client.gps.gps_listener

      # Trim any leading characters before the NMEA sentence. raw_data = raw_data[raw_data.index('$'):] - self.logger.info(f"Read: {raw_data}") + + # If we are being verbose, print the message we received. + if self.verbose: + self.logger.info(f"Read: {raw_data}") + + # Parse the received message. new_points = self.parser.parse(raw_data, time_converter, check=False) # Offset for the GPS @@ -555,11 +573,11 @@

      Source code for bosdyn.client.gps.gps_listener

      [docs]class GpsListener: - def __init__(self, robot, time_converter, stream, name, body_tform_gps, logger): + def __init__(self, robot, time_converter, stream, name, body_tform_gps, logger, verbose): self.logger = logger self.robot = robot self.time_converter = time_converter - self.reader = NMEAStreamReader(logger, stream, body_tform_gps) + self.reader = NMEAStreamReader(logger, stream, body_tform_gps, verbose) self.gps_device = GpsDevice() self.gps_device.name = name self.aggregator_client = None diff --git a/docs/html/_modules/bosdyn/client/gps/registration_client.html b/docs/html/_modules/bosdyn/client/gps/registration_client.html index 501760ef1..330785d58 100644 --- a/docs/html/_modules/bosdyn/client/gps/registration_client.html +++ b/docs/html/_modules/bosdyn/client/gps/registration_client.html @@ -3,7 +3,7 @@ - bosdyn.client.gps.registration_client — Spot 4.0.1 documentation + bosdyn.client.gps.registration_client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@

      - 4.0.1 + 4.0.2
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/graph_nav.html b/docs/html/_modules/bosdyn/client/graph_nav.html index 6829a6ffa..63c88e100 100644 --- a/docs/html/_modules/bosdyn/client/graph_nav.html +++ b/docs/html/_modules/bosdyn/client/graph_nav.html @@ -3,7 +3,7 @@ - bosdyn.client.graph_nav — Spot 4.0.1 documentation + bosdyn.client.graph_nav — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/gripper_camera_param.html b/docs/html/_modules/bosdyn/client/gripper_camera_param.html index 80b1cb835..d2e782c7a 100644 --- a/docs/html/_modules/bosdyn/client/gripper_camera_param.html +++ b/docs/html/_modules/bosdyn/client/gripper_camera_param.html @@ -3,7 +3,7 @@ - bosdyn.client.gripper_camera_param — Spot 4.0.1 documentation + bosdyn.client.gripper_camera_param — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/image.html b/docs/html/_modules/bosdyn/client/image.html index ebf36a0a7..0126fd1f9 100644 --- a/docs/html/_modules/bosdyn/client/image.html +++ b/docs/html/_modules/bosdyn/client/image.html @@ -3,7 +3,7 @@ - bosdyn.client.image — Spot 4.0.1 documentation + bosdyn.client.image — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/image_service_helpers.html b/docs/html/_modules/bosdyn/client/image_service_helpers.html index ca00af9e3..a4db635a1 100644 --- a/docs/html/_modules/bosdyn/client/image_service_helpers.html +++ b/docs/html/_modules/bosdyn/client/image_service_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.image_service_helpers — Spot 4.0.1 documentation + bosdyn.client.image_service_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/inverse_kinematics.html b/docs/html/_modules/bosdyn/client/inverse_kinematics.html index e01b53e64..1cd53df04 100644 --- a/docs/html/_modules/bosdyn/client/inverse_kinematics.html +++ b/docs/html/_modules/bosdyn/client/inverse_kinematics.html @@ -3,7 +3,7 @@ - bosdyn.client.inverse_kinematics — Spot 4.0.1 documentation + bosdyn.client.inverse_kinematics — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/ir_enable_disable.html b/docs/html/_modules/bosdyn/client/ir_enable_disable.html index 486d9ffcc..d7c970230 100644 --- a/docs/html/_modules/bosdyn/client/ir_enable_disable.html +++ b/docs/html/_modules/bosdyn/client/ir_enable_disable.html @@ -3,7 +3,7 @@ - bosdyn.client.ir_enable_disable — Spot 4.0.1 documentation + bosdyn.client.ir_enable_disable — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/keepalive.html b/docs/html/_modules/bosdyn/client/keepalive.html index 2bbecb05c..1aaa8d706 100644 --- a/docs/html/_modules/bosdyn/client/keepalive.html +++ b/docs/html/_modules/bosdyn/client/keepalive.html @@ -3,7 +3,7 @@ - bosdyn.client.keepalive — Spot 4.0.1 documentation + bosdyn.client.keepalive — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/lease.html b/docs/html/_modules/bosdyn/client/lease.html index 6dabad09d..06146a4e9 100644 --- a/docs/html/_modules/bosdyn/client/lease.html +++ b/docs/html/_modules/bosdyn/client/lease.html @@ -3,7 +3,7 @@ - bosdyn.client.lease — Spot 4.0.1 documentation + bosdyn.client.lease — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/lease_resource_hierarchy.html b/docs/html/_modules/bosdyn/client/lease_resource_hierarchy.html index ca8a56ffb..158d165b4 100644 --- a/docs/html/_modules/bosdyn/client/lease_resource_hierarchy.html +++ b/docs/html/_modules/bosdyn/client/lease_resource_hierarchy.html @@ -3,7 +3,7 @@ - bosdyn.client.lease_resource_hierarchy — Spot 4.0.1 documentation + bosdyn.client.lease_resource_hierarchy — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/lease_validator.html b/docs/html/_modules/bosdyn/client/lease_validator.html index 3a0aa13fb..9a752e69d 100644 --- a/docs/html/_modules/bosdyn/client/lease_validator.html +++ b/docs/html/_modules/bosdyn/client/lease_validator.html @@ -3,7 +3,7 @@ - bosdyn.client.lease_validator — Spot 4.0.1 documentation + bosdyn.client.lease_validator — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/license.html b/docs/html/_modules/bosdyn/client/license.html index d6ea3560f..f20d3dd0a 100644 --- a/docs/html/_modules/bosdyn/client/license.html +++ b/docs/html/_modules/bosdyn/client/license.html @@ -3,7 +3,7 @@ - bosdyn.client.license — Spot 4.0.1 documentation + bosdyn.client.license — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/local_grid.html b/docs/html/_modules/bosdyn/client/local_grid.html index 2cbbd65ff..602eb7118 100644 --- a/docs/html/_modules/bosdyn/client/local_grid.html +++ b/docs/html/_modules/bosdyn/client/local_grid.html @@ -3,7 +3,7 @@ - bosdyn.client.local_grid — Spot 4.0.1 documentation + bosdyn.client.local_grid — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/log_status.html b/docs/html/_modules/bosdyn/client/log_status.html index 3ee79e9a6..7ff0b9751 100644 --- a/docs/html/_modules/bosdyn/client/log_status.html +++ b/docs/html/_modules/bosdyn/client/log_status.html @@ -3,7 +3,7 @@ - bosdyn.client.log_status — Spot 4.0.1 documentation + bosdyn.client.log_status — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/manipulation_api_client.html b/docs/html/_modules/bosdyn/client/manipulation_api_client.html index aae6dabb2..e1663a85f 100644 --- a/docs/html/_modules/bosdyn/client/manipulation_api_client.html +++ b/docs/html/_modules/bosdyn/client/manipulation_api_client.html @@ -3,7 +3,7 @@ - bosdyn.client.manipulation_api_client — Spot 4.0.1 documentation + bosdyn.client.manipulation_api_client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/map_processing.html b/docs/html/_modules/bosdyn/client/map_processing.html index bf12aec32..30a3284e3 100644 --- a/docs/html/_modules/bosdyn/client/map_processing.html +++ b/docs/html/_modules/bosdyn/client/map_processing.html @@ -3,7 +3,7 @@ - bosdyn.client.map_processing — Spot 4.0.1 documentation + bosdyn.client.map_processing — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/math_helpers.html b/docs/html/_modules/bosdyn/client/math_helpers.html index a06ec0e41..c3c842d0d 100644 --- a/docs/html/_modules/bosdyn/client/math_helpers.html +++ b/docs/html/_modules/bosdyn/client/math_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.math_helpers — Spot 4.0.1 documentation + bosdyn.client.math_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/metrics_logging.html b/docs/html/_modules/bosdyn/client/metrics_logging.html index 0b5048851..04190cf8e 100644 --- a/docs/html/_modules/bosdyn/client/metrics_logging.html +++ b/docs/html/_modules/bosdyn/client/metrics_logging.html @@ -3,7 +3,7 @@ - bosdyn.client.metrics_logging — Spot 4.0.1 documentation + bosdyn.client.metrics_logging — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/network_compute_bridge_client.html b/docs/html/_modules/bosdyn/client/network_compute_bridge_client.html index 4d1a9ab4a..ea2d37277 100644 --- a/docs/html/_modules/bosdyn/client/network_compute_bridge_client.html +++ b/docs/html/_modules/bosdyn/client/network_compute_bridge_client.html @@ -3,7 +3,7 @@ - bosdyn.client.network_compute_bridge_client — Spot 4.0.1 documentation + bosdyn.client.network_compute_bridge_client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/payload.html b/docs/html/_modules/bosdyn/client/payload.html index 825b3048b..235ecda38 100644 --- a/docs/html/_modules/bosdyn/client/payload.html +++ b/docs/html/_modules/bosdyn/client/payload.html @@ -3,7 +3,7 @@ - bosdyn.client.payload — Spot 4.0.1 documentation + bosdyn.client.payload — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/payload_registration.html b/docs/html/_modules/bosdyn/client/payload_registration.html index 14c40e217..2fe5935ce 100644 --- a/docs/html/_modules/bosdyn/client/payload_registration.html +++ b/docs/html/_modules/bosdyn/client/payload_registration.html @@ -3,7 +3,7 @@ - bosdyn.client.payload_registration — Spot 4.0.1 documentation + bosdyn.client.payload_registration — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/point_cloud.html b/docs/html/_modules/bosdyn/client/point_cloud.html index 89e28f067..f4df5b878 100644 --- a/docs/html/_modules/bosdyn/client/point_cloud.html +++ b/docs/html/_modules/bosdyn/client/point_cloud.html @@ -3,7 +3,7 @@ - bosdyn.client.point_cloud — Spot 4.0.1 documentation + bosdyn.client.point_cloud — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/power.html b/docs/html/_modules/bosdyn/client/power.html index 20bb33893..579b53b7e 100644 --- a/docs/html/_modules/bosdyn/client/power.html +++ b/docs/html/_modules/bosdyn/client/power.html @@ -3,7 +3,7 @@ - bosdyn.client.power — Spot 4.0.1 documentation + bosdyn.client.power — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/processors.html b/docs/html/_modules/bosdyn/client/processors.html index cb2567eb1..9c3ba4b34 100644 --- a/docs/html/_modules/bosdyn/client/processors.html +++ b/docs/html/_modules/bosdyn/client/processors.html @@ -3,7 +3,7 @@ - bosdyn.client.processors — Spot 4.0.1 documentation + bosdyn.client.processors — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/ray_cast.html b/docs/html/_modules/bosdyn/client/ray_cast.html index 67656dee5..184bb0135 100644 --- a/docs/html/_modules/bosdyn/client/ray_cast.html +++ b/docs/html/_modules/bosdyn/client/ray_cast.html @@ -3,7 +3,7 @@ - bosdyn.client.ray_cast — Spot 4.0.1 documentation + bosdyn.client.ray_cast — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/recording.html b/docs/html/_modules/bosdyn/client/recording.html index 10a5487f7..29a516935 100644 --- a/docs/html/_modules/bosdyn/client/recording.html +++ b/docs/html/_modules/bosdyn/client/recording.html @@ -3,7 +3,7 @@ - bosdyn.client.recording — Spot 4.0.1 documentation + bosdyn.client.recording — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/robot.html b/docs/html/_modules/bosdyn/client/robot.html index 4bd58065c..a5727da5e 100644 --- a/docs/html/_modules/bosdyn/client/robot.html +++ b/docs/html/_modules/bosdyn/client/robot.html @@ -3,7 +3,7 @@ - bosdyn.client.robot — Spot 4.0.1 documentation + bosdyn.client.robot — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/robot_command.html b/docs/html/_modules/bosdyn/client/robot_command.html index 1efd093a7..ec0b6c5d9 100644 --- a/docs/html/_modules/bosdyn/client/robot_command.html +++ b/docs/html/_modules/bosdyn/client/robot_command.html @@ -3,7 +3,7 @@ - bosdyn.client.robot_command — Spot 4.0.1 documentation + bosdyn.client.robot_command — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -1012,6 +1021,21 @@

      Source code for bosdyn.client.robot_command

                                                                  behavior_fault_id=behavior_fault_id)
      +
      [docs]class RobotCommandStreamingClient(BaseClient): + """Client for calling RobotCommand services. + + This client is in BETA and may undergo changes in future releases. + """ + default_service_name = 'robot-command-streaming' + service_type = 'bosdyn.api.RobotCommandStreamingService' + + def __init__(self): + super(RobotCommandStreamingClient, + self).__init__(robot_command_service_pb2_grpc.RobotCommandStreamingServiceStub) + self._timesync_endpoint = None + +
      [docs] def send_joint_control_commands(self, command_iterator): + return self._stub.JointControlStream(command_iterator)
      def _robot_command_value(response): diff --git a/docs/html/_modules/bosdyn/client/robot_id.html b/docs/html/_modules/bosdyn/client/robot_id.html index 6dd89f52d..df682a846 100644 --- a/docs/html/_modules/bosdyn/client/robot_id.html +++ b/docs/html/_modules/bosdyn/client/robot_id.html @@ -3,7 +3,7 @@ - bosdyn.client.robot_id — Spot 4.0.1 documentation + bosdyn.client.robot_id — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/robot_state.html b/docs/html/_modules/bosdyn/client/robot_state.html index 05661fba2..66aeaf976 100644 --- a/docs/html/_modules/bosdyn/client/robot_state.html +++ b/docs/html/_modules/bosdyn/client/robot_state.html @@ -3,7 +3,7 @@ - bosdyn.client.robot_state — Spot 4.0.1 documentation + bosdyn.client.robot_state — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -619,6 +628,26 @@

      Source code for bosdyn.client.robot_state

               return robot_state_pb2.RobotLinkModelRequest(link_name=link_name)
      +
      [docs]class RobotStateStreamingClient(BaseClient): + """Client for the RobotState service. + + This client is in BETA and may undergo changes in future releases. + """ + default_service_name = 'robot-state-streaming' + service_type = 'bosdyn.api.RobotStateStreamingService' + + def __init__(self): + super(RobotStateStreamingClient, + self).__init__(robot_state_service_pb2_grpc.RobotStateStreamingServiceStub) + +
      [docs] def get_robot_state_stream(self, **kwargs): + """Returns an iterator providing current state updates of the robot.""" + req = self._get_robot_state_stream_request() + return self._stub.GetRobotStateStream(req)
      + + @staticmethod + def _get_robot_state_stream_request(): + return robot_state_pb2.RobotStateStreamRequest()
      def _get_robot_state_value(response): diff --git a/docs/html/_modules/bosdyn/client/sdk.html b/docs/html/_modules/bosdyn/client/sdk.html index eceb6c59d..2d076d820 100644 --- a/docs/html/_modules/bosdyn/client/sdk.html +++ b/docs/html/_modules/bosdyn/client/sdk.html @@ -3,7 +3,7 @@ - bosdyn.client.sdk — Spot 4.0.1 documentation + bosdyn.client.sdk — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/server_util.html b/docs/html/_modules/bosdyn/client/server_util.html index 00845f281..09faec647 100644 --- a/docs/html/_modules/bosdyn/client/server_util.html +++ b/docs/html/_modules/bosdyn/client/server_util.html @@ -3,7 +3,7 @@ - bosdyn.client.server_util — Spot 4.0.1 documentation + bosdyn.client.server_util — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/service_customization_helpers.html b/docs/html/_modules/bosdyn/client/service_customization_helpers.html index a1f3538c9..8221279d6 100644 --- a/docs/html/_modules/bosdyn/client/service_customization_helpers.html +++ b/docs/html/_modules/bosdyn/client/service_customization_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.service_customization_helpers — Spot 4.0.1 documentation + bosdyn.client.service_customization_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/signals_helpers.html b/docs/html/_modules/bosdyn/client/signals_helpers.html index 4b4893494..443dac829 100644 --- a/docs/html/_modules/bosdyn/client/signals_helpers.html +++ b/docs/html/_modules/bosdyn/client/signals_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.signals_helpers — Spot 4.0.1 documentation + bosdyn.client.signals_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/audio.html b/docs/html/_modules/bosdyn/client/spot_cam/audio.html index ecd2751d9..2de0277e1 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/audio.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/audio.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.audio — Spot 4.0.1 documentation + bosdyn.client.spot_cam.audio — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/compositor.html b/docs/html/_modules/bosdyn/client/spot_cam/compositor.html index f848a9b05..6e2f6a292 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/compositor.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/compositor.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.compositor — Spot 4.0.1 documentation + bosdyn.client.spot_cam.compositor — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/health.html b/docs/html/_modules/bosdyn/client/spot_cam/health.html index 1978e4578..d66196bcf 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/health.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/health.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.health — Spot 4.0.1 documentation + bosdyn.client.spot_cam.health — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/lighting.html b/docs/html/_modules/bosdyn/client/spot_cam/lighting.html index 0160eebc1..a9bb15700 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/lighting.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/lighting.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.lighting — Spot 4.0.1 documentation + bosdyn.client.spot_cam.lighting — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/lights_helper.html b/docs/html/_modules/bosdyn/client/spot_cam/lights_helper.html index d10c9c754..0ec99cb35 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/lights_helper.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/lights_helper.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.lights_helper — Spot 4.0.1 documentation + bosdyn.client.spot_cam.lights_helper — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/media_log.html b/docs/html/_modules/bosdyn/client/spot_cam/media_log.html index 5cac824e5..7a7178cd0 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/media_log.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/media_log.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.media_log — Spot 4.0.1 documentation + bosdyn.client.spot_cam.media_log — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/network.html b/docs/html/_modules/bosdyn/client/spot_cam/network.html index f7ec87364..7240c41a1 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/network.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/network.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.network — Spot 4.0.1 documentation + bosdyn.client.spot_cam.network — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/power.html b/docs/html/_modules/bosdyn/client/spot_cam/power.html index 7ecf3f0d4..a0997c8e1 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/power.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/power.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.power — Spot 4.0.1 documentation + bosdyn.client.spot_cam.power — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/ptz.html b/docs/html/_modules/bosdyn/client/spot_cam/ptz.html index 0d25f51e9..b446e86be 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/ptz.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/ptz.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.ptz — Spot 4.0.1 documentation + bosdyn.client.spot_cam.ptz — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/streamquality.html b/docs/html/_modules/bosdyn/client/spot_cam/streamquality.html index d7c0d6c3d..0a082699b 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/streamquality.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/streamquality.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.streamquality — Spot 4.0.1 documentation + bosdyn.client.spot_cam.streamquality — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_cam/version.html b/docs/html/_modules/bosdyn/client/spot_cam/version.html index 9e91acadd..a7e0758f6 100644 --- a/docs/html/_modules/bosdyn/client/spot_cam/version.html +++ b/docs/html/_modules/bosdyn/client/spot_cam/version.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_cam.version — Spot 4.0.1 documentation + bosdyn.client.spot_cam.version — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/spot_check.html b/docs/html/_modules/bosdyn/client/spot_check.html index f1b85f2be..19a7190bc 100644 --- a/docs/html/_modules/bosdyn/client/spot_check.html +++ b/docs/html/_modules/bosdyn/client/spot_check.html @@ -3,7 +3,7 @@ - bosdyn.client.spot_check — Spot 4.0.1 documentation + bosdyn.client.spot_check — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/time_sync.html b/docs/html/_modules/bosdyn/client/time_sync.html index 2b6723b97..dfe0e10e1 100644 --- a/docs/html/_modules/bosdyn/client/time_sync.html +++ b/docs/html/_modules/bosdyn/client/time_sync.html @@ -3,7 +3,7 @@ - bosdyn.client.time_sync — Spot 4.0.1 documentation + bosdyn.client.time_sync — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/token_cache.html b/docs/html/_modules/bosdyn/client/token_cache.html index b644ee031..1734a3102 100644 --- a/docs/html/_modules/bosdyn/client/token_cache.html +++ b/docs/html/_modules/bosdyn/client/token_cache.html @@ -3,7 +3,7 @@ - bosdyn.client.token_cache — Spot 4.0.1 documentation + bosdyn.client.token_cache — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/token_manager.html b/docs/html/_modules/bosdyn/client/token_manager.html index a929bec01..dc69d7e0b 100644 --- a/docs/html/_modules/bosdyn/client/token_manager.html +++ b/docs/html/_modules/bosdyn/client/token_manager.html @@ -3,7 +3,7 @@ - bosdyn.client.token_manager — Spot 4.0.1 documentation + bosdyn.client.token_manager — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/units_helpers.html b/docs/html/_modules/bosdyn/client/units_helpers.html index 191a6109a..51c49a71a 100644 --- a/docs/html/_modules/bosdyn/client/units_helpers.html +++ b/docs/html/_modules/bosdyn/client/units_helpers.html @@ -3,7 +3,7 @@ - bosdyn.client.units_helpers — Spot 4.0.1 documentation + bosdyn.client.units_helpers — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/util.html b/docs/html/_modules/bosdyn/client/util.html index fb25ee31f..4140e246e 100644 --- a/docs/html/_modules/bosdyn/client/util.html +++ b/docs/html/_modules/bosdyn/client/util.html @@ -3,7 +3,7 @@ - bosdyn.client.util — Spot 4.0.1 documentation + bosdyn.client.util — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/client/world_object.html b/docs/html/_modules/bosdyn/client/world_object.html index e491b8341..f24641895 100644 --- a/docs/html/_modules/bosdyn/client/world_object.html +++ b/docs/html/_modules/bosdyn/client/world_object.html @@ -3,7 +3,7 @@ - bosdyn.client.world_object — Spot 4.0.1 documentation + bosdyn.client.world_object — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/deprecated.html b/docs/html/_modules/bosdyn/deprecated.html index a0e71f945..598e65400 100644 --- a/docs/html/_modules/bosdyn/deprecated.html +++ b/docs/html/_modules/bosdyn/deprecated.html @@ -3,7 +3,7 @@ - bosdyn.deprecated — Spot 4.0.1 documentation + bosdyn.deprecated — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/geometry.html b/docs/html/_modules/bosdyn/geometry.html index e60954f95..2c23004d9 100644 --- a/docs/html/_modules/bosdyn/geometry.html +++ b/docs/html/_modules/bosdyn/geometry.html @@ -3,7 +3,7 @@ - bosdyn.geometry — Spot 4.0.1 documentation + bosdyn.geometry — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/mission/client.html b/docs/html/_modules/bosdyn/mission/client.html index fc42f8db4..403404bec 100644 --- a/docs/html/_modules/bosdyn/mission/client.html +++ b/docs/html/_modules/bosdyn/mission/client.html @@ -3,7 +3,7 @@ - bosdyn.mission.client — Spot 4.0.1 documentation + bosdyn.mission.client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/mission/constants.html b/docs/html/_modules/bosdyn/mission/constants.html index 1fb682cad..11e4968cb 100644 --- a/docs/html/_modules/bosdyn/mission/constants.html +++ b/docs/html/_modules/bosdyn/mission/constants.html @@ -3,7 +3,7 @@ - bosdyn.mission.constants — Spot 4.0.1 documentation + bosdyn.mission.constants — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/mission/exceptions.html b/docs/html/_modules/bosdyn/mission/exceptions.html index c673f0115..069387cf4 100644 --- a/docs/html/_modules/bosdyn/mission/exceptions.html +++ b/docs/html/_modules/bosdyn/mission/exceptions.html @@ -3,7 +3,7 @@ - bosdyn.mission.exceptions — Spot 4.0.1 documentation + bosdyn.mission.exceptions — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/mission/remote_client.html b/docs/html/_modules/bosdyn/mission/remote_client.html index 0cbd929ad..6a4b16d40 100644 --- a/docs/html/_modules/bosdyn/mission/remote_client.html +++ b/docs/html/_modules/bosdyn/mission/remote_client.html @@ -3,7 +3,7 @@ - bosdyn.mission.remote_client — Spot 4.0.1 documentation + bosdyn.mission.remote_client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/mission/server_util.html b/docs/html/_modules/bosdyn/mission/server_util.html index 92ce956b4..ca482015e 100644 --- a/docs/html/_modules/bosdyn/mission/server_util.html +++ b/docs/html/_modules/bosdyn/mission/server_util.html @@ -3,7 +3,7 @@ - bosdyn.mission.server_util — Spot 4.0.1 documentation + bosdyn.mission.server_util — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/mission/util.html b/docs/html/_modules/bosdyn/mission/util.html index 36dd971c6..78e539c2c 100644 --- a/docs/html/_modules/bosdyn/mission/util.html +++ b/docs/html/_modules/bosdyn/mission/util.html @@ -3,7 +3,7 @@ - bosdyn.mission.util — Spot 4.0.1 documentation + bosdyn.mission.util — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/orbit/client.html b/docs/html/_modules/bosdyn/orbit/client.html index 4004c6c6b..645f66930 100644 --- a/docs/html/_modules/bosdyn/orbit/client.html +++ b/docs/html/_modules/bosdyn/orbit/client.html @@ -3,7 +3,7 @@ - bosdyn.orbit.client — Spot 4.0.1 documentation + bosdyn.orbit.client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -496,8 +505,7 @@

      Source code for bosdyn.orbit.client

       
       """ The client uses a web API to send HTTPs requests to a number of REStful endpoints using the Requests library.
       """
      -from collections.abc import Iterable
      -from typing import Dict
      +from typing import Dict, Iterable
       
       import requests
       
      diff --git a/docs/html/_modules/bosdyn/orbit/exceptions.html b/docs/html/_modules/bosdyn/orbit/exceptions.html
      index 1da106455..0f8edba40 100644
      --- a/docs/html/_modules/bosdyn/orbit/exceptions.html
      +++ b/docs/html/_modules/bosdyn/orbit/exceptions.html
      @@ -3,7 +3,7 @@
       
         
         
      -  bosdyn.orbit.exceptions — Spot 4.0.1 documentation
      +  bosdyn.orbit.exceptions — Spot 4.0.2 documentation
             
             
           
      @@ -35,7 +35,7 @@
                     
                 
                     
      - 4.0.1 + 4.0.2
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/orbit/utils.html b/docs/html/_modules/bosdyn/orbit/utils.html index 0d67a77af..8a3a49146 100644 --- a/docs/html/_modules/bosdyn/orbit/utils.html +++ b/docs/html/_modules/bosdyn/orbit/utils.html @@ -3,7 +3,7 @@ - bosdyn.orbit.utils — Spot 4.0.1 documentation + bosdyn.orbit.utils — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/scout/client.html b/docs/html/_modules/bosdyn/scout/client.html index 0d1c20a7f..d72db5c18 100644 --- a/docs/html/_modules/bosdyn/scout/client.html +++ b/docs/html/_modules/bosdyn/scout/client.html @@ -3,7 +3,7 @@ - bosdyn.scout.client — Spot 4.0.1 documentation + bosdyn.scout.client — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • @@ -497,8 +506,7 @@

      Source code for bosdyn.scout.client

       """ Scout Client is a client for a single Scout instance. The client uses the Scout web API
           to send HTTPs requests to a number of REStful endpoints using the Requests library.
       """
      -from collections.abc import Iterable
      -from typing import Dict
      +from typing import Dict, Iterable
       
       import requests
       from deprecated.sphinx import deprecated
      diff --git a/docs/html/_modules/bosdyn/scout/utils.html b/docs/html/_modules/bosdyn/scout/utils.html
      index 9fdf2de12..0ebfa9f3a 100644
      --- a/docs/html/_modules/bosdyn/scout/utils.html
      +++ b/docs/html/_modules/bosdyn/scout/utils.html
      @@ -3,7 +3,7 @@
       
         
         
      -  bosdyn.scout.utils — Spot 4.0.1 documentation
      +  bosdyn.scout.utils — Spot 4.0.2 documentation
             
             
           
      @@ -35,7 +35,7 @@
                     
                 
                     
      - 4.0.1 + 4.0.2
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/bosdyn/util.html b/docs/html/_modules/bosdyn/util.html index 212df7255..0154b0600 100644 --- a/docs/html/_modules/bosdyn/util.html +++ b/docs/html/_modules/bosdyn/util.html @@ -3,7 +3,7 @@ - bosdyn.util — Spot 4.0.1 documentation + bosdyn.util — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_modules/index.html b/docs/html/_modules/index.html index e777d0f10..eeb3e00bc 100644 --- a/docs/html/_modules/index.html +++ b/docs/html/_modules/index.html @@ -3,7 +3,7 @@ - Overview: module code — Spot 4.0.1 documentation + Overview: module code — Spot 4.0.2 documentation @@ -35,7 +35,7 @@
      - 4.0.1 + 4.0.2
      @@ -93,6 +93,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/_static/documentation_options.js b/docs/html/_static/documentation_options.js index 95a9760f8..198109a93 100644 --- a/docs/html/_static/documentation_options.js +++ b/docs/html/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '4.0.1', + VERSION: '4.0.2', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/html/docs/concepts/README.html b/docs/html/docs/concepts/README.html index e38b01b8b..10da22924 100644 --- a/docs/html/docs/concepts/README.html +++ b/docs/html/docs/concepts/README.html @@ -4,7 +4,7 @@ - Concepts — Spot 4.0.1 documentation + Concepts — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit diff --git a/docs/html/docs/concepts/about_orbit.html b/docs/html/docs/concepts/about_orbit.html index e2be7fb01..f82e807d3 100644 --- a/docs/html/docs/concepts/about_orbit.html +++ b/docs/html/docs/concepts/about_orbit.html @@ -4,7 +4,7 @@ - About Orbit (formerly Scout) — Spot 4.0.1 documentation + About Orbit (formerly Scout) — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
    - 4.0.1 + 4.0.2
    @@ -96,6 +96,13 @@
  • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/about_spot.html b/docs/html/docs/concepts/about_spot.html index 01d6d2d9f..a7a6033bc 100644 --- a/docs/html/docs/concepts/about_spot.html +++ b/docs/html/docs/concepts/about_spot.html @@ -4,7 +4,7 @@ - About Spot — Spot 4.0.1 documentation + About Spot — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/arm/README.html b/docs/html/docs/concepts/arm/README.html index a82abe63a..ffcfde922 100644 --- a/docs/html/docs/concepts/arm/README.html +++ b/docs/html/docs/concepts/arm/README.html @@ -4,7 +4,7 @@ - Spot Arm and Gripper — Spot 4.0.1 documentation + Spot Arm and Gripper — Spot 4.0.2 documentation @@ -22,7 +22,7 @@ - + @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/arm/arm_concepts.html b/docs/html/docs/concepts/arm/arm_concepts.html index 42780167b..f1c74ccad 100644 --- a/docs/html/docs/concepts/arm/arm_concepts.html +++ b/docs/html/docs/concepts/arm/arm_concepts.html @@ -4,7 +4,7 @@ - Arm Concepts — Spot 4.0.1 documentation + Arm Concepts — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/arm/arm_services.html b/docs/html/docs/concepts/arm/arm_services.html index b57d26ac6..7874df32e 100644 --- a/docs/html/docs/concepts/arm/arm_services.html +++ b/docs/html/docs/concepts/arm/arm_services.html @@ -4,7 +4,7 @@ - Arm Services — Spot 4.0.1 documentation + Arm Services — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/arm/arm_specification.html b/docs/html/docs/concepts/arm/arm_specification.html index b8b0baafb..bf89d6b06 100644 --- a/docs/html/docs/concepts/arm/arm_specification.html +++ b/docs/html/docs/concepts/arm/arm_specification.html @@ -4,7 +4,7 @@ - Arm and gripper specifications — Spot 4.0.1 documentation + Arm and gripper specifications — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/README.html b/docs/html/docs/concepts/autonomy/README.html index b1a87f268..19778b89b 100644 --- a/docs/html/docs/concepts/autonomy/README.html +++ b/docs/html/docs/concepts/autonomy/README.html @@ -4,7 +4,7 @@ - Autonomy — Spot 4.0.1 documentation + Autonomy — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/auto_return.html b/docs/html/docs/concepts/autonomy/auto_return.html index ac8b9dc05..ed90e3b06 100644 --- a/docs/html/docs/concepts/autonomy/auto_return.html +++ b/docs/html/docs/concepts/autonomy/auto_return.html @@ -4,7 +4,7 @@ - AutoReturn Service — Spot 4.0.1 documentation + AutoReturn Service — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/autonomous_navigation_code_examples.html b/docs/html/docs/concepts/autonomy/autonomous_navigation_code_examples.html index 8ab648d3b..d0edb06e0 100644 --- a/docs/html/docs/concepts/autonomy/autonomous_navigation_code_examples.html +++ b/docs/html/docs/concepts/autonomy/autonomous_navigation_code_examples.html @@ -4,7 +4,7 @@ - Autonomous navigation code examples — Spot 4.0.1 documentation + Autonomous navigation code examples — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/autonomous_navigation_services.html b/docs/html/docs/concepts/autonomy/autonomous_navigation_services.html index 70a505a29..a217e3e82 100644 --- a/docs/html/docs/concepts/autonomy/autonomous_navigation_services.html +++ b/docs/html/docs/concepts/autonomy/autonomous_navigation_services.html @@ -4,7 +4,7 @@ - Navigation Services — Spot 4.0.1 documentation + Navigation Services — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/autowalk_service.html b/docs/html/docs/concepts/autonomy/autowalk_service.html index 60021b6f8..63d5e75b2 100644 --- a/docs/html/docs/concepts/autonomy/autowalk_service.html +++ b/docs/html/docs/concepts/autonomy/autowalk_service.html @@ -4,7 +4,7 @@ - Autowalk Service — Spot 4.0.1 documentation + Autowalk Service — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/components_of_autonomous_navigation.html b/docs/html/docs/concepts/autonomy/components_of_autonomous_navigation.html index b551e6c05..08cb9d248 100644 --- a/docs/html/docs/concepts/autonomy/components_of_autonomous_navigation.html +++ b/docs/html/docs/concepts/autonomy/components_of_autonomous_navigation.html @@ -4,7 +4,7 @@ - Components of Navigation — Spot 4.0.1 documentation + Components of Navigation — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/directed_exploration.html b/docs/html/docs/concepts/autonomy/directed_exploration.html index a4ee7284d..071a9b2f2 100644 --- a/docs/html/docs/concepts/autonomy/directed_exploration.html +++ b/docs/html/docs/concepts/autonomy/directed_exploration.html @@ -4,7 +4,7 @@ - Directed Exploration — Spot 4.0.1 documentation + Directed Exploration — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/docking.html b/docs/html/docs/concepts/autonomy/docking.html index 3093179f1..0e77c343c 100644 --- a/docs/html/docs/concepts/autonomy/docking.html +++ b/docs/html/docs/concepts/autonomy/docking.html @@ -4,7 +4,7 @@ - Docking — Spot 4.0.1 documentation + Docking — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/gps.html b/docs/html/docs/concepts/autonomy/gps.html index 0c40b8c32..ba9779cc1 100644 --- a/docs/html/docs/concepts/autonomy/gps.html +++ b/docs/html/docs/concepts/autonomy/gps.html @@ -4,7 +4,7 @@ - GPS on Spot — Spot 4.0.1 documentation + GPS on Spot — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/graphnav_and_robot_locomotion.html b/docs/html/docs/concepts/autonomy/graphnav_and_robot_locomotion.html index ff063e0fb..5d42ca926 100644 --- a/docs/html/docs/concepts/autonomy/graphnav_and_robot_locomotion.html +++ b/docs/html/docs/concepts/autonomy/graphnav_and_robot_locomotion.html @@ -4,7 +4,7 @@ - GraphNav and Robot Locomotion — Spot 4.0.1 documentation + GraphNav and Robot Locomotion — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/graphnav_area_callbacks.html b/docs/html/docs/concepts/autonomy/graphnav_area_callbacks.html index 9f2c86d70..2dce0e96f 100644 --- a/docs/html/docs/concepts/autonomy/graphnav_area_callbacks.html +++ b/docs/html/docs/concepts/autonomy/graphnav_area_callbacks.html @@ -4,7 +4,7 @@ - GraphNav Area Callbacks — Spot 4.0.1 documentation + GraphNav Area Callbacks — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/graphnav_map_structure.html b/docs/html/docs/concepts/autonomy/graphnav_map_structure.html index 96077c608..de0e40495 100644 --- a/docs/html/docs/concepts/autonomy/graphnav_map_structure.html +++ b/docs/html/docs/concepts/autonomy/graphnav_map_structure.html @@ -4,7 +4,7 @@ - GraphNav Map Structure — Spot 4.0.1 documentation + GraphNav Map Structure — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/graphnav_service.html b/docs/html/docs/concepts/autonomy/graphnav_service.html index c2c3e2003..d9acda28d 100644 --- a/docs/html/docs/concepts/autonomy/graphnav_service.html +++ b/docs/html/docs/concepts/autonomy/graphnav_service.html @@ -4,7 +4,7 @@ - GraphNav Service — Spot 4.0.1 documentation + GraphNav Service — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/graphnav_tech_summary.html b/docs/html/docs/concepts/autonomy/graphnav_tech_summary.html index 37f720f79..8ebc5fbe1 100644 --- a/docs/html/docs/concepts/autonomy/graphnav_tech_summary.html +++ b/docs/html/docs/concepts/autonomy/graphnav_tech_summary.html @@ -4,7 +4,7 @@ - Autonomy Technical Summary — Spot 4.0.1 documentation + Autonomy Technical Summary — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/initialization.html b/docs/html/docs/concepts/autonomy/initialization.html index 449aeffe3..8be9e3ddc 100644 --- a/docs/html/docs/concepts/autonomy/initialization.html +++ b/docs/html/docs/concepts/autonomy/initialization.html @@ -4,7 +4,7 @@ - GraphNav Initialization — Spot 4.0.1 documentation + GraphNav Initialization — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/localization.html b/docs/html/docs/concepts/autonomy/localization.html index ee8bed687..c91904d1c 100644 --- a/docs/html/docs/concepts/autonomy/localization.html +++ b/docs/html/docs/concepts/autonomy/localization.html @@ -4,7 +4,7 @@ - GraphNav Localization — Spot 4.0.1 documentation + GraphNav Localization — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/missions_service.html b/docs/html/docs/concepts/autonomy/missions_service.html index ae00884d1..4e9f3af77 100644 --- a/docs/html/docs/concepts/autonomy/missions_service.html +++ b/docs/html/docs/concepts/autonomy/missions_service.html @@ -4,7 +4,7 @@ - Mission Service — Spot 4.0.1 documentation + Mission Service — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/autonomy/typical_autonomous_navigation_use_case.html b/docs/html/docs/concepts/autonomy/typical_autonomous_navigation_use_case.html index ac83dd390..cff6874ea 100644 --- a/docs/html/docs/concepts/autonomy/typical_autonomous_navigation_use_case.html +++ b/docs/html/docs/concepts/autonomy/typical_autonomous_navigation_use_case.html @@ -4,7 +4,7 @@ - Typical Autonomous Use Case — Spot 4.0.1 documentation + Typical Autonomous Use Case — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/base_services.html b/docs/html/docs/concepts/base_services.html index fe8baffc5..2e6f02405 100644 --- a/docs/html/docs/concepts/base_services.html +++ b/docs/html/docs/concepts/base_services.html @@ -4,7 +4,7 @@ - Base Services — Spot 4.0.1 documentation + Base Services — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/bddf.html b/docs/html/docs/concepts/bddf.html index 657e71904..4545ccc8a 100644 --- a/docs/html/docs/concepts/bddf.html +++ b/docs/html/docs/concepts/bddf.html @@ -4,7 +4,7 @@ - BDDF data format — Spot 4.0.1 documentation + BDDF data format — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/README.html b/docs/html/docs/concepts/choreography/README.html index acbed0422..76fced2b3 100644 --- a/docs/html/docs/concepts/choreography/README.html +++ b/docs/html/docs/concepts/choreography/README.html @@ -4,7 +4,7 @@ - Spot Choreography SDK — Spot 4.0.1 documentation + Spot Choreography SDK — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/animation_file_specification.html b/docs/html/docs/concepts/choreography/animation_file_specification.html index feba1c9f1..2cb6f55c4 100644 --- a/docs/html/docs/concepts/choreography/animation_file_specification.html +++ b/docs/html/docs/concepts/choreography/animation_file_specification.html @@ -4,7 +4,7 @@ - Animation files for Choreographer — Spot 4.0.1 documentation + Animation files for Choreographer — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/animations_in_choreographer.html b/docs/html/docs/concepts/choreography/animations_in_choreographer.html index f81e15a56..175f86a13 100644 --- a/docs/html/docs/concepts/choreography/animations_in_choreographer.html +++ b/docs/html/docs/concepts/choreography/animations_in_choreographer.html @@ -4,7 +4,7 @@ - Animations in Choreography — Spot 4.0.1 documentation + Animations in Choreography — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/choreographer.html b/docs/html/docs/concepts/choreography/choreographer.html index 6ed9d0612..3dbbfbb30 100644 --- a/docs/html/docs/concepts/choreography/choreographer.html +++ b/docs/html/docs/concepts/choreography/choreographer.html @@ -4,7 +4,7 @@ - Boston Dynamics Choreographer Developer Guide — Spot 4.0.1 documentation + Boston Dynamics Choreographer Developer Guide — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/choreographer_setup.html b/docs/html/docs/concepts/choreography/choreographer_setup.html index cac7a1d0d..20e9400a7 100644 --- a/docs/html/docs/concepts/choreography/choreographer_setup.html +++ b/docs/html/docs/concepts/choreography/choreographer_setup.html @@ -4,7 +4,7 @@ - Install Choreographer — Spot 4.0.1 documentation + Install Choreographer — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/choreography_in_autowalk.html b/docs/html/docs/concepts/choreography/choreography_in_autowalk.html index 6cf6227a8..e18a2c016 100644 --- a/docs/html/docs/concepts/choreography/choreography_in_autowalk.html +++ b/docs/html/docs/concepts/choreography/choreography_in_autowalk.html @@ -4,7 +4,7 @@ - Choreography in Autowalk — Spot 4.0.1 documentation + Choreography in Autowalk — Spot 4.0.2 documentation @@ -21,7 +21,7 @@ - + @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/choreography_in_tablet.html b/docs/html/docs/concepts/choreography/choreography_in_tablet.html index 8999b40c3..3eda30401 100644 --- a/docs/html/docs/concepts/choreography/choreography_in_tablet.html +++ b/docs/html/docs/concepts/choreography/choreography_in_tablet.html @@ -4,7 +4,7 @@ - Boston Dynamics Choreography tablet UI — Spot 4.0.1 documentation + Boston Dynamics Choreography tablet UI — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/choreography_service.html b/docs/html/docs/concepts/choreography/choreography_service.html index 4e9588106..54a4ca78a 100644 --- a/docs/html/docs/concepts/choreography/choreography_service.html +++ b/docs/html/docs/concepts/choreography/choreography_service.html @@ -4,7 +4,7 @@ - Choreography service — Spot 4.0.1 documentation + Choreography service — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/custom_gait.html b/docs/html/docs/concepts/choreography/custom_gait.html index 2a5634a2a..6903abe2c 100644 --- a/docs/html/docs/concepts/choreography/custom_gait.html +++ b/docs/html/docs/concepts/choreography/custom_gait.html @@ -4,7 +4,7 @@ - Custom Gait — Spot 4.0.1 documentation + Custom Gait — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/move_reference.html b/docs/html/docs/concepts/choreography/move_reference.html index 0ffebf727..7ad63156b 100644 --- a/docs/html/docs/concepts/choreography/move_reference.html +++ b/docs/html/docs/concepts/choreography/move_reference.html @@ -4,7 +4,7 @@ - Choreography moves reference — Spot 4.0.1 documentation + Choreography moves reference — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/choreography/robot_controls_in_choreographer.html b/docs/html/docs/concepts/choreography/robot_controls_in_choreographer.html index fd2412c94..3a68690d3 100644 --- a/docs/html/docs/concepts/choreography/robot_controls_in_choreographer.html +++ b/docs/html/docs/concepts/choreography/robot_controls_in_choreographer.html @@ -4,7 +4,7 @@ - Connecting robots to Choreographer — Spot 4.0.1 documentation + Connecting robots to Choreographer — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/data.html b/docs/html/docs/concepts/data.html index f53d4d256..335467c7c 100644 --- a/docs/html/docs/concepts/data.html +++ b/docs/html/docs/concepts/data.html @@ -4,7 +4,7 @@ - Spot Data — Spot 4.0.1 documentation + Spot Data — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/data_acquisition_output.html b/docs/html/docs/concepts/data_acquisition_output.html index 3a7498310..5640f13f0 100644 --- a/docs/html/docs/concepts/data_acquisition_output.html +++ b/docs/html/docs/concepts/data_acquisition_output.html @@ -4,7 +4,7 @@ - Data Acquisition Output — Spot 4.0.1 documentation + Data Acquisition Output — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/data_acquisition_overview.html b/docs/html/docs/concepts/data_acquisition_overview.html index 1082b5efa..915551835 100644 --- a/docs/html/docs/concepts/data_acquisition_overview.html +++ b/docs/html/docs/concepts/data_acquisition_overview.html @@ -4,7 +4,7 @@ - Data Acquisition Overview — Spot 4.0.1 documentation + Data Acquisition Overview — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/data_acquisition_thermal_raw.html b/docs/html/docs/concepts/data_acquisition_thermal_raw.html index 663703e9f..66b1d957e 100644 --- a/docs/html/docs/concepts/data_acquisition_thermal_raw.html +++ b/docs/html/docs/concepts/data_acquisition_thermal_raw.html @@ -4,7 +4,7 @@ - Thermal Raw Data — Spot 4.0.1 documentation + Thermal Raw Data — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/data_buffer_overview.html b/docs/html/docs/concepts/data_buffer_overview.html index fa9be6766..9755c41a5 100644 --- a/docs/html/docs/concepts/data_buffer_overview.html +++ b/docs/html/docs/concepts/data_buffer_overview.html @@ -4,7 +4,7 @@ - Data Buffer Overview — Spot 4.0.1 documentation + Data Buffer Overview — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/developing_api_services.html b/docs/html/docs/concepts/developing_api_services.html index 63c9021df..452faf48c 100644 --- a/docs/html/docs/concepts/developing_api_services.html +++ b/docs/html/docs/concepts/developing_api_services.html @@ -4,7 +4,7 @@ - Developing API Services — Spot 4.0.1 documentation + Developing API Services — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/estop_service.html b/docs/html/docs/concepts/estop_service.html index 99ba098bd..84535dbfa 100644 --- a/docs/html/docs/concepts/estop_service.html +++ b/docs/html/docs/concepts/estop_service.html @@ -4,7 +4,7 @@ - E-Stop Service — Spot 4.0.1 documentation + E-Stop Service — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/faults.html b/docs/html/docs/concepts/faults.html index 7713be8f8..1be52e371 100644 --- a/docs/html/docs/concepts/faults.html +++ b/docs/html/docs/concepts/faults.html @@ -4,7 +4,7 @@ - Faults — Spot 4.0.1 documentation + Faults — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
    • Hello Orbit
    • Export Run Archives
    • diff --git a/docs/html/docs/concepts/geometry_and_frames.html b/docs/html/docs/concepts/geometry_and_frames.html index f64255648..b440abacd 100644 --- a/docs/html/docs/concepts/geometry_and_frames.html +++ b/docs/html/docs/concepts/geometry_and_frames.html @@ -4,7 +4,7 @@ - Geometry and Frames — Spot 4.0.1 documentation + Geometry and Frames — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
      - 4.0.1 + 4.0.2
      @@ -96,6 +96,13 @@
    • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • diff --git a/docs/html/python/examples/animation_recorder/README.html b/docs/html/python/examples/animation_recorder/README.html index d17aebe5a..6b2993b51 100644 --- a/docs/html/python/examples/animation_recorder/README.html +++ b/docs/html/python/examples/animation_recorder/README.html @@ -4,7 +4,7 @@ - Animation Recorder — Spot 4.0.1 documentation + Animation Recorder — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
    - 4.0.1 + 4.0.2
    @@ -96,6 +96,13 @@
  • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • diff --git a/docs/html/python/examples/docs/autonomy_and_missions_examples.html b/docs/html/python/examples/docs/autonomy_and_missions_examples.html index 9941b1583..765bcfd21 100644 --- a/docs/html/python/examples/docs/autonomy_and_missions_examples.html +++ b/docs/html/python/examples/docs/autonomy_and_missions_examples.html @@ -4,7 +4,7 @@ - Autonomy and Missions Examples — Spot 4.0.1 documentation + Autonomy and Missions Examples — Spot 4.0.2 documentation @@ -38,7 +38,7 @@
    - 4.0.1 + 4.0.2
    @@ -96,6 +96,13 @@
  • Choreography Actions in Autowalk
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit
  • +
  • Joint Control API +
  • Spot Arm
  • Payloads and Registration Examples
  • +
  • Joint Control API Examples
  • Orbit