@@ -57,27 +57,35 @@ func Named(name string) resource.Name {
57
57
// // Get the Analog pin "my_example_analog".
58
58
// analog, err := myBoard.AnalogByName("my_example_analog")
59
59
//
60
+ // For more information, see the [AnalogByName method docs].
61
+ //
60
62
// DigitalInterruptByName example:
61
63
//
62
64
// myBoard, err := board.FromRobot(robot, "my_board")
63
65
//
64
66
// // Get the DigitalInterrupt "my_example_digital_interrupt".
65
67
// interrupt, err := myBoard.DigitalInterruptByName("my_example_digital_interrupt")
66
68
//
69
+ // For more information, see the [DigitalInterruptByName method docs].
70
+ //
67
71
// GPIOPinByName example:
68
72
//
69
73
// myBoard, err := board.FromRobot(robot, "my_board")
70
74
//
71
75
// // Get the GPIOPin with pin number 15.
72
76
// pin, err := myBoard.GPIOPinByName("15")
73
77
//
78
+ // For more information, see the [GPIOPinByName method docs].
79
+ //
74
80
// SetPowerMode example:
75
81
//
76
82
// myBoard, err := board.FromRobot(robot, "my_board")
77
83
//
78
84
// Set the power mode of the board to OFFLINE_DEEP.
79
85
// myBoard.SetPowerMode(context.Background(), boardpb.PowerMode_POWER_MODE_OFFLINE_DEEP, nil)
80
86
//
87
+ // For more information, see the [SetPowerMode method docs].
88
+ //
81
89
// StreamTicks example:
82
90
//
83
91
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -97,7 +105,14 @@ func Named(name string) resource.Name {
97
105
//
98
106
// err = myBoard.StreamTicks(context.Background(), interrupts, ticksChan, nil)
99
107
//
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
101
116
type Board interface {
102
117
resource.Resource
103
118
@@ -134,6 +149,8 @@ type Board interface {
134
149
// readingValue := reading.Value
135
150
// stepSize := reading.StepSize
136
151
//
152
+ // For more information, see the [Read method docs].
153
+ //
137
154
// Write example:
138
155
//
139
156
// myBoard, err := board.FromRobot(robot, "my_board")
@@ -143,6 +160,11 @@ type Board interface {
143
160
//
144
161
// // Set the pin to value 48.
145
162
// 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
146
168
type Analog interface {
147
169
// Read reads off the current value.
148
170
Read (ctx context.Context , extra map [string ]interface {}) (AnalogValue , error )
0 commit comments