Skip to content

Commit 22d97c6

Browse files
authored
Add method links to examples arm through camera (#4696)
1 parent b559adf commit 22d97c6

File tree

6 files changed

+89
-2
lines changed

6 files changed

+89
-2
lines changed

components/arm/arm.go

+15
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ func Named(name string) resource.Name {
5959
// // Get the end position of the arm as a Pose.
6060
// pos, err := myArm.EndPosition(context.Background(), nil)
6161
//
62+
// For more information, see the [EndPosition method docs].
63+
//
6264
// MoveToPosition example:
6365
//
6466
// myArm, err := arm.FromRobot(machine, "my_arm")
@@ -71,6 +73,8 @@ func Named(name string) resource.Name {
7173
// // Move your arm to the Pose.
7274
// err = myArm.MoveToPosition(context.Background(), examplePose, nil)
7375
//
76+
// For more information, see the [MoveToPosition method docs].
77+
//
7478
// MoveToJointPositions example:
7579
//
7680
// myArm, err := arm.FromRobot(machine, "my_arm")
@@ -81,6 +85,8 @@ func Named(name string) resource.Name {
8185
// // Move each joint of the arm to the positions specified in the above slice
8286
// err = myArm.MoveToJointPositions(context.Background(), inputs, nil)
8387
//
88+
// For more information, see the [MoveToJointPositions method docs].
89+
//
8490
// MoveThroughJointPositions example:
8591
//
8692
// myArm, err := arm.FromRobot(machine, "my_arm")
@@ -94,14 +100,23 @@ func Named(name string) resource.Name {
94100
// // Move each joint of the arm through the positions in the slice defined above
95101
// err = myArm.MoveThroughJointPositions(context.Background(), inputs, nil, nil)
96102
//
103+
// For more information, see the [MoveThroughJointPositions method docs].
104+
//
97105
// JointPositions example:
98106
//
99107
// myArm , err := arm.FromRobot(machine, "my_arm")
100108
//
101109
// // Get the current position of each joint on the arm as JointPositions.
102110
// pos, err := myArm.JointPositions(context.Background(), nil)
103111
//
112+
// For more information, see the [JointPositions method docs].
113+
//
104114
// [arm component docs]: https://docs.viam.com/components/arm/
115+
// [EndPosition method docs]: https://docs.viam.com/dev/reference/apis/components/arm/#getendposition
116+
// [MoveToPosition method docs]: https://docs.viam.com/dev/reference/apis/components/arm/#movetoposition
117+
// [MoveToJointPositions method docs]: https://docs.viam.com/dev/reference/apis/components/arm/#movetojointpositions
118+
// [MoveThroughJointPositions method docs]: https://docs.viam.com/dev/reference/apis/components/arm/#movethroughjointpositions
119+
// [JointPositions method docs]: https://docs.viam.com/dev/reference/apis/components/arm/#getjointpositions
105120
type Arm interface {
106121
resource.Resource
107122
referenceframe.ModelFramer

components/base/base.go

+15
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,17 @@ func Named(name string) resource.Name {
4646
// // Move the base backward 40 mm at a velocity of -90 mm/s.
4747
// myBase.MoveStraight(context.Background(), 40, -90, nil)
4848
//
49+
// For more information, see the [MoveStraight method docs].
50+
//
4951
// Spin example:
5052
//
5153
// myBase, err := base.FromRobot(machine, "my_base")
5254
//
5355
// // Spin the base 10 degrees at an angular velocity of 15 deg/sec.
5456
// myBase.Spin(context.Background(), 10, 15, nil)
5557
//
58+
// For more information, see the [Spin method docs].
59+
//
5660
// SetPower example:
5761
//
5862
// myBase, err := base.FromRobot(machine, "my_base")
@@ -73,13 +77,17 @@ func Named(name string) resource.Name {
7377
// logger.Info("spin right")
7478
// err = myBase.SetPower(context.Background(), r3.Vector{}, r3.Vector{Z: -.75}, nil)
7579
//
80+
// For more information, see the [SetPower method docs].
81+
//
7682
// SetVelocity example:
7783
//
7884
// myBase, err := base.FromRobot(machine, "my_base")
7985
//
8086
// // Set the linear velocity to 50 mm/sec and the angular velocity to 15 deg/sec.
8187
// myBase.SetVelocity(context.Background(), r3.Vector{Y: 50}, r3.Vector{Z: 15}, nil)
8288
//
89+
// For more information, see the [SetVelocity method docs].
90+
//
8391
// Properties example:
8492
//
8593
// myBase, err := base.FromRobot(machine, "my_base")
@@ -96,7 +104,14 @@ func Named(name string) resource.Name {
96104
// // Get the wheel circumference
97105
// myBaseWheelCircumference := properties.WheelCircumferenceMeters
98106
//
107+
// For more information, see the [Properties method docs].
108+
//
99109
// [base component docs]: https://docs.viam.com/components/base/
110+
// [Properties method docs]: https://docs.viam.com/dev/reference/apis/components/base/#getproperties
111+
// [SetVelocity method docs]: https://docs.viam.com/dev/reference/apis/components/base/#setvelocity
112+
// [SetPower method docs]: https://docs.viam.com/dev/reference/apis/components/base/#setpower
113+
// [Spin method docs]: https://docs.viam.com/dev/reference/apis/components/base/#spin
114+
// [MoveStraight method docs]: https://docs.viam.com/dev/reference/apis/components/base/#movestraight
100115
type Base interface {
101116
resource.Resource
102117
resource.Actuator

components/board/board.go

+23-1
Original file line numberDiff line numberDiff line change
@@ -57,27 +57,35 @@ func Named(name string) resource.Name {
5757
// // Get the Analog pin "my_example_analog".
5858
// analog, err := myBoard.AnalogByName("my_example_analog")
5959
//
60+
// For more information, see the [AnalogByName method docs].
61+
//
6062
// DigitalInterruptByName example:
6163
//
6264
// myBoard, err := board.FromRobot(robot, "my_board")
6365
//
6466
// // Get the DigitalInterrupt "my_example_digital_interrupt".
6567
// interrupt, err := myBoard.DigitalInterruptByName("my_example_digital_interrupt")
6668
//
69+
// For more information, see the [DigitalInterruptByName method docs].
70+
//
6771
// GPIOPinByName example:
6872
//
6973
// myBoard, err := board.FromRobot(robot, "my_board")
7074
//
7175
// // Get the GPIOPin with pin number 15.
7276
// pin, err := myBoard.GPIOPinByName("15")
7377
//
78+
// For more information, see the [GPIOPinByName method docs].
79+
//
7480
// SetPowerMode example:
7581
//
7682
// myBoard, err := board.FromRobot(robot, "my_board")
7783
//
7884
// Set the power mode of the board to OFFLINE_DEEP.
7985
// myBoard.SetPowerMode(context.Background(), boardpb.PowerMode_POWER_MODE_OFFLINE_DEEP, nil)
8086
//
87+
// For more information, see the [SetPowerMode method docs].
88+
//
8189
// StreamTicks example:
8290
//
8391
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -97,7 +105,14 @@ func Named(name string) resource.Name {
97105
//
98106
// err = myBoard.StreamTicks(context.Background(), interrupts, ticksChan, nil)
99107
//
100-
// [board component docs]: https://docs.viam.com/components/board/
108+
// For more information, see the [StreamTicks method docs].
109+
//
110+
// [board component docs]: https://docs.viam.com/operate/reference/components/board/
111+
// [AnalogByName method docs]: https://docs.viam.com/dev/reference/apis/components/board/#analogbyname
112+
// [DigitalInterruptByName method docs]: https://docs.viam.com/dev/reference/apis/components/board/#digitalinterruptbyname
113+
// [GPIOPinByName method docs]: https://docs.viam.com/dev/reference/apis/components/board/#gpiopinbyname
114+
// [SetPowerMode method docs]: https://docs.viam.com/dev/reference/apis/components/board/#setpowermode
115+
// [StreamTicks method docs]: https://docs.viam.com/dev/reference/apis/components/board/#streamticks
101116
type Board interface {
102117
resource.Resource
103118

@@ -134,6 +149,8 @@ type Board interface {
134149
// readingValue := reading.Value
135150
// stepSize := reading.StepSize
136151
//
152+
// For more information, see the [Read method docs].
153+
//
137154
// Write example:
138155
//
139156
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -143,6 +160,11 @@ type Board interface {
143160
//
144161
// // Set the pin to value 48.
145162
// err = analog.Write(context.Background(), 48, nil)
163+
//
164+
// For more information, see the [Write method docs].
165+
//
166+
// [Read method docs]: https://docs.viam.com/dev/reference/apis/components/board/#readanalogreader
167+
// [Write method docs]: https://docs.viam.com/dev/reference/apis/components/board/#writeanalog
146168
type Analog interface {
147169
// Read reads off the current value.
148170
Read(ctx context.Context, extra map[string]interface{}) (AnalogValue, error)

components/board/digital_interrupts.go

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ type Tick struct {
2828
//
2929
// // Get the amount of times this DigitalInterrupt has ticked.
3030
// count, err := interrupt.Value(context.Background(), nil)
31+
//
32+
// For more information, see the [Value method docs].
33+
//
34+
// [Value method docs]: https://docs.viam.com/dev/reference/apis/components/board/#getdigitalinterruptvalue
3135
type DigitalInterrupt interface {
3236
// Name returns the name of the interrupt.
3337
Name() string

components/board/gpio_pin.go

+19
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import (
1919
// // Set the pin to high.
2020
// err = pin.Set(context.Background(), true, nil)
2121
//
22+
// For more information, see the [Set method docs].
23+
//
2224
// Get example:
2325
//
2426
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -29,6 +31,8 @@ import (
2931
// // Get if it is true or false that the state of the pin is high.
3032
// high, err := pin.Get(context.Background(), nil)
3133
//
34+
// For more information, see the [Get method docs].
35+
//
3236
// PWM example:
3337
//
3438
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -39,6 +43,8 @@ import (
3943
// // Returns the duty cycle.
4044
// duty_cycle, err := pin.PWM(context.Background(), nil)
4145
//
46+
// For more information, see the [PWM method docs].
47+
//
4248
// SetPWM example:
4349
//
4450
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -49,6 +55,8 @@ import (
4955
// // Set the duty cycle to .6, meaning that this pin will be in the high state for 60% of the duration of the PWM interval period.
5056
// err = pin.SetPWM(context.Background(), .6, nil)
5157
//
58+
// For more information, see the [SetPWM method docs].
59+
//
5260
// PWMFreq example:
5361
//
5462
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -59,6 +67,8 @@ import (
5967
// // Get the PWM frequency of this pin.
6068
// freqHz, err := pin.PWMFreq(context.Background(), nil)
6169
//
70+
// For more information, see the [PWMFreq method docs].
71+
//
6272
// SetPWMFreq example:
6373
//
6474
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -68,6 +78,15 @@ import (
6878
//
6979
// // Set the PWM frequency of this pin to 1600 Hz.
7080
// err = pin.SetPWMFreq(context.Background(), 1600, nil)
81+
//
82+
// For more information, see the [SetPWMFreq method docs].
83+
//
84+
// [Set method docs]: https://docs.viam.com/dev/reference/apis/components/board/#setgpio
85+
// [Get method docs]: https://docs.viam.com/dev/reference/apis/components/board/#getgpio
86+
// [PWM method docs]: https://docs.viam.com/dev/reference/apis/components/board/#getpwm
87+
// [SetPWM method docs]: https://docs.viam.com/dev/reference/apis/components/board/#setpwm
88+
// [PWMFreq method docs]: https://docs.viam.com/dev/reference/apis/components/board/#pwmfrequency
89+
// [SetPWMFreq method docs]: https://docs.viam.com/dev/reference/apis/components/board/#setpwmfrequency
7190
type GPIOPin interface {
7291
// Set sets the pin to either low or high.
7392
Set(ctx context.Context, high bool, extra map[string]interface{}) error

components/camera/camera.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,16 @@ type Camera interface {
9797
// myCamera, err := camera.FromRobot(machine, "my_camera")
9898
// img, err = camera.DecodeImageFromCamera(context.Background(), utils.MimeTypeJPEG, nil, myCamera)
9999
//
100+
// For more information, see the [Image method docs].
101+
//
100102
// Images example:
101103
//
102104
// myCamera, err := camera.FromRobot(machine, "my_camera")
103105
//
104106
// images, metadata, err := myCamera.Images(context.Background())
105107
//
108+
// For more information, see the [Images method docs].
109+
//
106110
// Stream example:
107111
//
108112
// myCamera, err := camera.FromRobot(machine, "my_camera")
@@ -121,13 +125,21 @@ type Camera interface {
121125
// // gets the next point cloud from a camera
122126
// pointCloud, err := myCamera.NextPointCloud(context.Background())
123127
//
128+
// For more information, see the [NextPointCloud method docs].
129+
//
124130
// Close example:
125131
//
126132
// myCamera, err := camera.FromRobot(machine, "my_camera")
127133
//
128134
// err = myCamera.Close(context.Background())
129135
//
130-
// [camera component docs]: https://docs.viam.com/components/camera/
136+
// For more information, see the [Close method docs].
137+
//
138+
// [camera component docs]: https://docs.viam.com/dev/reference/apis/components/camera/
139+
// [Image method docs]: https://docs.viam.com/dev/reference/apis/components/camera/#getimage
140+
// [Images method docs]: https://docs.viam.com/dev/reference/apis/components/camera/#getimages
141+
// [NextPointCloud method docs]: https://docs.viam.com/dev/reference/apis/components/camera/#getpointcloud
142+
// [Close method docs]: https://docs.viam.com/dev/reference/apis/components/camera/#close
131143
type VideoSource interface {
132144
// Image returns a byte slice representing an image that tries to adhere to the MIME type hint.
133145
// Image also may return metadata about the frame.

0 commit comments

Comments
 (0)