LSH-Core
A robust C++ framework for Arduino-based home automation nodes
Loading...
Searching...
No Matches
wrong_config_strings.hpp
Go to the documentation of this file.
1
21#ifndef LSHCORE_UTIL_CONSTANTS_WRONG_CONFIG_STRINGS_HPP
22#define LSHCORE_UTIL_CONSTANTS_WRONG_CONFIG_STRINGS_HPP
23
24#include <avr/pgmspace.h>
25
29namespace constants
30{
35 namespace wrongConfigStrings
36 {
37 constexpr const char SPACE[] PROGMEM = " "; // NOLINT
38 constexpr const char WRONG[] PROGMEM = "Wrong"; // NOLINT
39 constexpr const char ACTUATORS[] PROGMEM = "actuators"; // NOLINT
40 constexpr const char CLICKABLES[] PROGMEM = "clickables"; // NOLINT
41 constexpr const char INDICATORS[] PROGMEM = "indicators"; // NOLINT
42 constexpr const char NUMBER[] PROGMEM = "number"; // NOLINT
43 constexpr const char DUPLICATE[] PROGMEM = "Duplicate"; // NOLINT
44 constexpr const char ID[] PROGMEM = "ID"; // NOLINT
45 } // namespace wrongConfigStrings
46
47} // namespace constants
48
49#endif // LSHCORE_UTIL_CONSTANTS_WRONG_CONFIG_STRINGS_HPP
namespace for constants.
Definition config.hpp:33