LSH-Core
Deterministic firmware core for Controllino-based Labo Smart Home nodes
 
Loading...
Searching...
No Matches
indicator_modes.hpp
Go to the documentation of this file.
1
21#ifndef LSH_CORE_UTIL_CONSTANTS_INDICATOR_MODES_HPP
22#define LSH_CORE_UTIL_CONSTANTS_INDICATOR_MODES_HPP
23
24#include <stdint.h>
25
29namespace constants
30{
35enum class IndicatorMode : uint8_t
36{
37 ANY,
38 ALL,
40};
41
42} // namespace constants
43
44#endif // LSH_CORE_UTIL_CONSTANTS_INDICATOR_MODES_HPP
Namespace that groups compile-time constants.
Definition config.hpp:33
IndicatorMode
Indicator mode for an indicator.
Definition indicator_modes.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.