2025-08-28 14:58:55 +02:00
|
|
|
#pragma once
|
|
|
|
|
#include <cstdint>
|
2025-08-28 15:58:50 +02:00
|
|
|
#include <string>
|
2025-08-28 14:58:55 +02:00
|
|
|
|
|
|
|
|
inline constexpr uint8_t ledPinR = 16;
|
|
|
|
|
inline constexpr uint8_t ledPinG = 17;
|
|
|
|
|
inline constexpr uint8_t ledPinB = 18;
|
|
|
|
|
inline constexpr uint8_t ledPinCW = 19;
|
|
|
|
|
inline constexpr uint8_t ledPinWW = 21;
|
|
|
|
|
|
2025-08-28 15:58:50 +02:00
|
|
|
inline constexpr std::string_view hostName = "smart-rgb-dev";
|
|
|
|
|
inline constexpr std::string_view friendlyName = "Smart RGB Dev";
|
|
|
|
|
inline constexpr uint32_t maxNumberOfStates = 10;
|
2025-08-28 14:58:55 +02:00
|
|
|
|
2025-08-28 15:58:50 +02:00
|
|
|
inline constexpr std::string_view mqttBroker = "10.238.75.81";
|