Skip to content

Commit

Permalink
Add the rest of the components
Browse files Browse the repository at this point in the history
  • Loading branch information
sguequierre committed Sep 6, 2024
1 parent a27b1cf commit 1c964a9
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 3 deletions.
3 changes: 3 additions & 0 deletions components/input/input.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package input provides human input, such as buttons, switches, knobs, gamepads, joysticks, keyboards, mice, etc.
// For more information, see the [input controller component docs].
//
// [input controller component docs]: https://docs.viam.com/components/input-controller/
package input

import (
Expand Down
4 changes: 4 additions & 0 deletions components/motor/motor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Package motor defines machines that convert electricity into rotary motion.
// For more information, see the [motor component docs].
//
// [motor component docs]: https://docs.viam.com/components/motor/
package motor

import (
Expand Down
5 changes: 4 additions & 1 deletion components/movementsensor/movementsensor.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package movementsensor defines the interfaces of a MovementSensor
// Package movementsensor defines the interfaces of a MovementSensor.
// For more information, see the [movement sensor component docs].
//
// [movement sensor component docs]: https://docs.viam.com/components/movement-sensor/
package movementsensor

import (
Expand Down
2 changes: 1 addition & 1 deletion components/posetracker/pose_tracker.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package posetracker contains the interface and gRPC infrastructure
// for a pose tracker component
// for a pose tracker component.
package posetracker

import (
Expand Down
5 changes: 4 additions & 1 deletion components/powersensor/powersensor.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package powersensor defines the interfaces of a powersensor
// Package powersensor defines the interfaces of a powersensor.
// For more information, see the [power sensor component docs].
//
// [power sensor component docs]: https://docs.viam.com/components/power-sensor/
package powersensor

import (
Expand Down
3 changes: 3 additions & 0 deletions components/sensor/sensor.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Package sensor defines an abstract sensing device that can provide measurement readings.
// For more information, see the [sensor component docs].
//
// [sensor component docs]: https://docs.viam.com/components/sensor/
package sensor

import (
Expand Down
4 changes: 4 additions & 0 deletions components/servo/servo.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Package servo supports “RC” or “hobby” servo motors.
// For more information, see the [servo component docs].
//
// [servo component docs]: https://docs.viam.com/components/servo/
package servo

import (
Expand Down

0 comments on commit 1c964a9

Please sign in to comment.