RoboidControl
Loading...
Searching...
No Matches
d:/PlatformIO/RoboidControl/Sensor.h
Go to the documentation of this file.
1#pragma once
2
3#include "Thing.h"
4
5namespace Passer {
6namespace RoboidControl {
7
9class Sensor : public Thing {
10public:
12 Sensor();
13
14 virtual void Update(){};
15};
16
17} // namespace RoboidControl
18} // namespace Passer
19using namespace Passer::RoboidControl;
A sensor is a thing which can perform measurements in the environment.
Definition Sensor.h:9
Sensor()
Default Constructor for a Sensor.
Definition Sensor.cpp:3
virtual void Update()
Definition Sensor.h:14
A thing is a functional component on a robot.
Definition Thing.h:9
Definition Accelerometer.h:7
Definition AbsoluteEncoder.h:5