mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-01-28 09:39:11 +03:00
7 lines
100 B
C++
7 lines
100 B
C++
#pragma once
|
|
|
|
enum class AsyncMqttClientError : uint8_t {
|
|
MAX_RETRIES = 0,
|
|
OUT_OF_MEMORY = 1
|
|
};
|