LSH-Core
A robust C++ framework for Arduino-based home automation nodes
Loading...
Searching...
No Matches
indicatormodes.hpp
Go to the documentation of this file.
1
21#ifndef LSHCORE_UTIL_CONSTANTS_INDICATOR_MODES_HPP
22#define LSHCORE_UTIL_CONSTANTS_INDICATOR_MODES_HPP
23
24#include <stdint.h>
25
29namespace constants
30{
35 enum class IndicatorMode : uint8_t
36 {
37 ANY,
38 ALL,
40 };
41
42} // namespace constants
43
44#endif // LSHCORE_UTIL_CONSTANTS_INDICATOR_MODES_HPP
namespace for constants.
Definition config.hpp:33
IndicatorMode
Indicator mode for an indicator.
Definition indicatormodes.hpp:36
@ MAJORITY
If the majority of controlled actuators is ON turn ON the indicator.
@ ALL
If all controlled actuators are ON turn on the indicator.
@ ANY
If any controlled actuators is ON turn on the indicator.