Files
smart-rgb-esp32/include/config.h

15 lines
496 B
C
Raw Normal View History

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-29 19:17:09 +02:00
inline constexpr std::string_view hostName = "smart-rgb";
inline constexpr std::string_view friendlyName = "Smart RGB";
2025-08-28 15:58:50 +02:00
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";