Add void pointer for initializing sensors

This commit is contained in:
Niklas Jensen
2025-11-27 23:00:01 +01:00
parent 5b6fed69c0
commit 5efe17c204
5 changed files with 30 additions and 21 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class SensorBase {
public:
SensorBase() {}
virtual bool initialize() = 0;
virtual bool initialize(void* _arg) = 0;
virtual bool update() = 0;