Skip to main content

Usage

Import one of the generated pb_* packages, which correspond to the message folder collections and prefix it:

import (
pb_outputs "github.com/VU-ASE/rovercom/packages/go/outputs"
)

Then, instantiate an object like so:

msg := pb_outputs.SensorOutput{
Timestamp: uint64(time.Now().UnixMilli()), // milliseconds since epoch
Status: 0, // all is well
SensorId: 1, // this is the first and only sensor we have
SensorOutput: &pb_outputs.SensorOutput_ControllerOutput{
ControllerOutput: &pb_outputs.ControllerOutput{
SteeringAngle: steerPosition,
LeftThrottle: 0,
RightThrottle: 0,
FanSpeed: 0,
FrontLights: false,
},
},
}

We recommend taking a look at the service-template-go to understand how rovercom messages are used.