ESP32-PaxCounter/include/sensor.h

10 lines
214 B
C
Raw Normal View History

#ifndef _SENSOR_H
#define _SENSOR_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);
#endif