LSH-Core
A robust C++ framework for Arduino-based home automation nodes
Loading...
Searching...
No Matches
user_config_bridge.hpp
Go to the documentation of this file.
1
21#ifndef LSHCORE_INTERNAL_USER_CONFIG_BRIDGE_HPP
22#define LSHCORE_INTERNAL_USER_CONFIG_BRIDGE_HPP
23
24#include "lsh_user_config.hpp"
25
27
28static constexpr const char *CONFIG_DEVICE_NAME = LSH_DEVICE_NAME;
29static constexpr uint8_t CONFIG_MAX_CLICKABLES = LSH_MAX_CLICKABLES;
30static constexpr uint8_t CONFIG_MAX_ACTUATORS = LSH_MAX_ACTUATORS;
31static constexpr uint8_t CONFIG_MAX_INDICATORS = LSH_MAX_INDICATORS;
32static constexpr HardwareSerial *const CONFIG_COM_SERIAL = LSH_COM_SERIAL;
33static constexpr HardwareSerial *const CONFIG_DEBUG_SERIAL = LSH_DEBUG_SERIAL;
34
35#endif // LSHCORE_INTERNAL_USER_CONFIG_BRIDGE_HPP
Internal bridge to include the user-specified hardware library (e.g., Arduino.h).