Humidistat
Arduino firmware for a humidistat (humidity controller)
Loading...
Searching...
No Matches
aliases.h
Go to the documentation of this file.
1#ifndef HUMIDISTAT_ALIASES_H
2#define HUMIDISTAT_ALIASES_H
3
4#include CONFIG_HEADER
5
8
9// Humidity sensor
10#ifdef HUMIDISTAT_DHT
12using HumiditySensor = DHTHumiditySensor;
13#endif
14#ifdef HUMIDISTAT_SHT
16using HumiditySensor = SHTHumiditySensor;
17#endif
18
19// Input
20#ifdef HUMIDISTAT_INPUT_KS0256
22using VoltLadder = Ks0256VoltLadder;
23#endif
24#ifdef HUMIDISTAT_INPUT_KS0466
26using VoltLadder = Ks0466VoltLadder;
27#endif
28
29#endif //HUMIDISTAT_ALIASES_H
Implementation of the HumiditySensor interface for the DHT22/AM2302 sensor.
Implementation of the VoltLadder interface for the Keyestudio Ks0256 keypad.
Implementation of the VoltLadder interface for the Keyestudio Ks0466 keypad.
Implementation of the HumiditySensor interface for the Sensirion SHT85 sensor.