Skip to content

Commit

Permalink
deploy: 72d21ac
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma committed Oct 8, 2024
1 parent 624ce86 commit b850bb7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions viam_sdk/MovementSensor/position.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ <h1><span class="kind-method">position</span> abstract method
<section class="desc markdown">
<p>Get the current <a href="../../viam_sdk/GeoPoint-class.html">GeoPoint</a> (latitude, longitude) and altitude (mm).</p>
<pre class="language-dart"><code>var position = await myMovementSensor.position();
var altitude = position.altitude;
var coordinates = position.coordinates;
</code></pre>
<p>For more information, see <a href="https://docs.viam.com/components/movement-sensor/">Movement Sensor component</a>.</p>
</section>
Expand Down
2 changes: 2 additions & 0 deletions viam_sdk/MovementSensorClient/position.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ <h1><span class="kind-method">position</span> method
<section class="desc markdown">
<p>Get the current <a href="../../viam_sdk/GeoPoint-class.html">GeoPoint</a> (latitude, longitude) and altitude (mm).</p>
<pre class="language-dart"><code>var position = await myMovementSensor.position();
var altitude = position.altitude;
var coordinates = position.coordinates;
</code></pre>
<p>For more information, see <a href="https://docs.viam.com/components/movement-sensor/">Movement Sensor component</a>.</p>
</section>
Expand Down
2 changes: 2 additions & 0 deletions viam_sdk/Servo/move.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ <h1><span class="kind-method">move</span> abstract method

<section class="desc markdown">
<p>Move the <a href="../../viam_sdk/Servo-class.html">Servo</a> to the provided angle.</p>
<pre class="language-dart"><code>await myServo.move(30);
</code></pre>
<p>For more information, see <a href="https://docs.viam.com/components/servo/">Servo component</a>.</p>
</section>

Expand Down
2 changes: 2 additions & 0 deletions viam_sdk/ServoClient/move.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ <h1><span class="kind-method">move</span> method

<section class="desc markdown">
<p>Move the <a href="../../viam_sdk/Servo-class.html">Servo</a> to the provided angle.</p>
<pre class="language-dart"><code>await myServo.move(30);
</code></pre>
<p>For more information, see <a href="https://docs.viam.com/components/servo/">Servo component</a>.</p>
</section>

Expand Down

0 comments on commit b850bb7

Please sign in to comment.