Extrospector and Interoceptor both inherit from Sensor now

This commit is contained in:
2025-01-04 14:34:54 -04:00
parent aa48342bc2
commit 2eddecb7d6
3 changed files with 24 additions and 10 deletions
+8
View File
@@ -2,8 +2,13 @@
#define _INTEROCEPTOR_H
#include <cstdint>
#include <sensors/sensor.h>
namespace hk {
namespace sensors {
class Interoceptor
: public Sensor
{
public:
Interoceptor(uint32_t _id, uint32_t _value = 0)
@@ -98,4 +103,7 @@ public:
{}
};
} // namespace sensors
} // namespace hk
#endif // _INTEROCEPTOR_H