15 lines
393 B
C
15 lines
393 B
C
/**
|
|
* @file init.h
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Call this once at startup to initialize, configure, and subscribe sensors
|
|
void initSensors();
|
|
|
|
// Call this whenever the configuration may have changed, so any sensors
|
|
// can be reconfigured with the new settings.
|
|
// Note: this may not be necessarily possible for all sensors, so some may
|
|
// do nothing when this is called.
|
|
void reconfigureSensors();
|