Documentation ¶
Overview ¶
Package motion contains a gRPC based motion client
Package motion implements an motion service.
Package motion contains a gRPC based motion service server
Index ¶
Constants ¶
View Source
const SubtypeName = "motion"
SubtypeName is the name of the type of service.
Variables ¶
View Source
var API = resource.APINamespaceRDK.WithServiceType(SubtypeName)
API is a variable that identifies the motion service resource API.
Functions ¶
func Named ¶ added in v0.0.8
Named is a helper for getting the named motion service's typed resource name.
func NewRPCServiceServer ¶ added in v0.2.36
func NewRPCServiceServer(coll resource.APIResourceCollection[Service]) interface{}
NewRPCServiceServer constructs a motion gRPC service server. It is intentionally untyped to prevent use outside of tests.
Types ¶
type Service ¶
type Service interface { resource.Resource Move( ctx context.Context, componentName resource.Name, destination *referenceframe.PoseInFrame, worldState *referenceframe.WorldState, constraints *servicepb.Constraints, extra map[string]interface{}, ) (bool, error) MoveOnMap( ctx context.Context, componentName resource.Name, destination spatialmath.Pose, slamName resource.Name, extra map[string]interface{}, ) (bool, error) MoveOnGlobe( ctx context.Context, componentName resource.Name, destination *geo.Point, heading float64, movementSensorName resource.Name, obstacles []*spatialmath.GeoObstacle, linearVelocity float64, angularVelocity float64, extra map[string]interface{}, ) (bool, error) MoveSingleComponent( ctx context.Context, componentName resource.Name, destination *referenceframe.PoseInFrame, worldState *referenceframe.WorldState, extra map[string]interface{}, ) (bool, error) GetPose( ctx context.Context, componentName resource.Name, destinationFrame string, supplementalTransforms []*referenceframe.LinkInFrame, extra map[string]interface{}, ) (*referenceframe.PoseInFrame, error) }
A Service controls the flow of moving components.
func FromDependencies ¶ added in v0.2.47
func FromDependencies(deps resource.Dependencies, name string) (Service, error)
FromDependencies is a helper for getting the named motion service from a collection of dependencies.
Directories ¶
Path | Synopsis |
---|---|
Package builtin implements a motion service.
|
Package builtin implements a motion service. |
Package register registers all relevant motion services and also API specific functions
|
Package register registers all relevant motion services and also API specific functions |
Click to show internal directories.
Click to hide internal directories.