Humidistat
Arduino firmware for a humidistat (humidity controller)
Loading...
Searching...
No Matches
config_assert.h
Go to the documentation of this file.
1#ifndef HUMIDISTAT_CONFIG_ASSERT_H
2#define HUMIDISTAT_CONFIG_ASSERT_H
3
4#if !defined(HUMIDISTAT_CONTROLLER_SINGLE) && !defined(HUMIDISTAT_CONTROLLER_CASCADE)
5#error No humidistat type defined! Configure the firmware in src/config.h first.
6#endif
7
8#if !defined(HUMIDISTAT_DHT) && !defined(HUMIDISTAT_SHT)
9#error No humidity sensor type defined! Configure the firmware in src/config.h first.
10#endif
11
12#if !defined(HUMIDISTAT_INPUT_KS0256) && !defined(HUMIDISTAT_INPUT_KS0466)
13#error No keypad type defined! Configure the firmware in src/config.h first.
14#endif
15
16#if !defined(HUMIDISTAT_UI_CHAR) && !defined(HUMIDISTAT_UI_GRAPH)
17#error No UI type defined! Configure the firmware in src/config.h first.
18#endif
19
20#endif //HUMIDISTAT_CONFIG_ASSERT_H