Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCS-2498: Link to main component documentation on RDK docs site #4351

Merged
merged 4 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/arm/arm.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
//go:build !no_cgo

// Package arm defines the arm that a robot uses to manipulate objects.
// For more information, see the [Arm Component].
//
// [Arm Component]: https://docs.viam.com/components/arm/
package arm

import (
Expand Down
3 changes: 3 additions & 0 deletions components/base/base.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package base defines the base that a robot uses to move around.
// For more information, see the [Base Component].
//
// [Base Component]: https://docs.viam.com/components/base/
package base

import (
Expand Down
3 changes: 3 additions & 0 deletions components/board/board.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// such as a Raspberry Pi.
//
// Besides the board itself, some other interfaces it defines are analog pins and digital interrupts.
// For more information, see the [Board Component].
//
// [Board Component]: https://docs.viam.com/components/board/
package board

import (
Expand Down
3 changes: 3 additions & 0 deletions components/camera/camera.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package camera defines an image capturing device.
// For more information, see the [Camera Component].
//
// [Camera Component]: https://docs.viam.com/components/camera/
package camera

import (
Expand Down
5 changes: 4 additions & 1 deletion components/encoder/encoder.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package encoder implements the encoder component
// Package encoder implements the encoder component.
// For more information, see the [Encoder Component].
//
// [Encoder Component]: https://docs.viam.com/components/encoder/
package encoder

import (
Expand Down
4 changes: 4 additions & 0 deletions components/gantry/gantry.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Package gantry defines a robotic gantry with one or multiple axes.
// For more information, see the [Gantry Component].
//
// [Gantry Component]: https://docs.viam.com/components/gantry/
package gantry

import (
Expand Down
5 changes: 4 additions & 1 deletion components/generic/generic.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package generic defines an abstract generic device and DoCommand() method
// Package generic defines an abstract generic device and DoCommand() method.
// For more information, see the [Generic Component].
//
// [Generic Component]: https://docs.viam.com/components/generic/
package generic

import (
Expand Down
3 changes: 3 additions & 0 deletions components/gripper/gripper.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package gripper defines a robotic gripper.
// For more information, see the [Gripper Component].
//
// [Gripper Component]: https://docs.viam.com/components/gripper/
package gripper

import (
Expand Down
Loading