LSH-Core
Deterministic firmware core for Controllino-based Labo Smart Home nodes
 
Loading...
Searching...
No Matches
wrong_config_strings.hpp
Go to the documentation of this file.
1
21#ifndef LSH_CORE_UTIL_CONSTANTS_WRONG_CONFIG_STRINGS_HPP
22#define LSH_CORE_UTIL_CONSTANTS_WRONG_CONFIG_STRINGS_HPP
23
24#include <avr/pgmspace.h>
25
29namespace constants
30{
35namespace wrongConfigStrings
36{
37constexpr const char SPACE[] PROGMEM = " "; // NOLINT
38constexpr const char WRONG[] PROGMEM = "Wrong"; // NOLINT
39constexpr const char ACTUATORS[] PROGMEM = "actuators"; // NOLINT
40constexpr const char CLICKABLES[] PROGMEM = "clickables"; // NOLINT
41constexpr const char INDICATORS[] PROGMEM = "indicators"; // NOLINT
42constexpr const char NUMBER[] PROGMEM = "number"; // NOLINT
43constexpr const char DUPLICATE[] PROGMEM = "Duplicate"; // NOLINT
44constexpr const char ID[] PROGMEM = "ID"; // NOLINT
45} // namespace wrongConfigStrings
46
47} // namespace constants
48
49#endif // LSH_CORE_UTIL_CONSTANTS_WRONG_CONFIG_STRINGS_HPP
Namespace that groups compile-time constants.
Definition config.hpp:33