ZotBins Core
Loading...
Searching...
No Matches
WeightMetric.hpp
Go to the documentation of this file.
1
8
9#ifndef WEIGHT_HPP
10#define WEIGHT_HPP
11
12#include "IWeight.hpp"
13#include "hx711.h"
14
15namespace Weight
16{
22 {
23 public:
29 WeightMetric(IWeight &weightSensor);
30
36 int32_t getWeight();
37
38 private:
43 IWeight &mWeightSensor;
44 };
45}
46
47#endif
Header file for IWeight class.
Interface (abstract) class for mock and real hardware weight sensor. Used to inherit the getWeight me...
Definition IWeight.hpp:22
WeightMetric(IWeight &weightSensor)
Construct a new Weight object.
Definition WeightMetric.cpp:5
int32_t getWeight()
Returns the weight.
Definition WeightMetric.cpp:10