2018-11-20 15:02:37 +01:00
|
|
|
#ifndef _SENSOR_H
|
|
|
|
#define _SENSOR_H
|
|
|
|
|
2021-03-31 21:43:51 +02:00
|
|
|
#include "configmanager.h"
|
|
|
|
|
2020-11-02 18:44:06 +01:00
|
|
|
#define HAS_SENSORS (HAS_SENSOR_1 || HAS_SENSOR_2 || HAS_SENSOR_3)
|
|
|
|
|
2018-11-20 15:44:33 +01:00
|
|
|
uint8_t sensor_mask(uint8_t sensor_no);
|
2020-11-02 18:44:06 +01:00
|
|
|
uint8_t *sensor_read(uint8_t sensor);
|
2018-11-20 16:48:35 +01:00
|
|
|
void sensor_init(void);
|
2018-11-20 15:02:37 +01:00
|
|
|
|
|
|
|
#endif
|