Viam C++ SDK current
Loading...
Searching...
No Matches
sensor_client.hpp
Go to the documentation of this file.
1
4#pragma once
5
6#include <grpcpp/channel.h>
7
8#include <viam/api/component/sensor/v1/sensor.grpc.pb.h>
9
12#include <viam/sdk/config/resource.hpp>
13
14namespace viam {
15namespace sdk {
16namespace impl {
17
21class SensorClient : public Sensor {
22 public:
23 using interface_type = Sensor;
24 SensorClient(std::string name, std::shared_ptr<grpc::Channel> channel);
25 AttributeMap get_readings(const AttributeMap& extra) override;
26 AttributeMap do_command(const AttributeMap& command) override;
27 std::vector<GeometryConfig> get_geometries(const AttributeMap& extra) override;
28
31
32 private:
33 using StubType = viam::component::sensor::v1::SensorService::StubInterface;
34 std::unique_ptr<StubType> stub_;
35 std::shared_ptr<grpc::Channel> channel_;
36};
37
38} // namespace impl
39} // namespace sdk
40} // namespace viam
virtual std::string name() const
Return the resource's name.
Definition sensor.hpp:24
AttributeMap get_readings()
Returns the measurements/data specific to this sensor.
Definition sensor.hpp:46
std::vector< GeometryConfig > get_geometries()
Returns GeometryConfigs associated with the calling sensor.
Definition sensor.hpp:35
gRPC client implementation of a Sensor component.
Definition sensor_client.hpp:21
std::vector< GeometryConfig > get_geometries(const AttributeMap &extra) override
Returns GeometryConfigs associated with the calling sensor.
AttributeMap get_readings(const AttributeMap &extra) override
Returns the measurements/data specific to this sensor.
AttributeMap do_command(const AttributeMap &command) override
Send/receive arbitrary commands to the resource.
Defines a Sensor component.
Implements a gRPC server for the Sensor component.