6#include <viam/api/component/sensor/v1/sensor.grpc.pb.h>
10#include <viam/sdk/config/resource.hpp>
11#include <viam/sdk/rpc/dial.hpp>
29 ProtoStruct
do_command(
const ProtoStruct& command)
override;
30 std::vector<GeometryConfig>
get_geometries(
const ProtoStruct& extra)
override;
36 using StubType = viam::component::sensor::v1::SensorService::StubInterface;
37 std::unique_ptr<StubType> stub_;
virtual std::string name() const
Return the resource's name.
std::vector< GeometryConfig > get_geometries()
Returns GeometryConfigs associated with the calling sensor.
Definition sensor.hpp:33
ProtoStruct get_readings()
Returns the measurements/data specific to this sensor.
Definition sensor.hpp:44
gRPC client implementation of a Sensor component.
Definition sensor_client.hpp:20
ProtoStruct get_readings(const ProtoStruct &extra) override
Returns the measurements/data specific to this sensor.
std::vector< GeometryConfig > get_geometries(const ProtoStruct &extra) override
Returns GeometryConfigs associated with the calling sensor.
ProtoStruct do_command(const ProtoStruct &command) override
Send/receive arbitrary commands to the resource.
Defines a Sensor component.
Implements a gRPC server for the Sensor component.