12 lines
218 B
C
12 lines
218 B
C
#ifndef CO2_LEVEL_H
|
|
#define CO2_LEVEL_H
|
|
|
|
#include "error_code.h"
|
|
|
|
extern const int CO2_LEVEL_EMPTY_ROOM; // [ppm]
|
|
|
|
enum error_code co2_lvl_init();
|
|
enum error_code co2_lvl_get_value(int* holder);
|
|
|
|
#endif //CO2_LEVEL_H
|