sensor_commands.h 299 Bytes
Newer Older
1
2
#include <Arduino.h>

3
4
5
6
7
/** Other scripts can use this namespace, in order to define callbacks.
 * Those callbacks can then be used to send commands to the sensor (reset, calibrate, night mode, ...)
 *
 */

8
9
namespace sensor_commands {
  void run();
10
  void defineCallback(void (*f)(void*), void *d);
11
}