1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-17 18:52:19 +01:00
This commit is contained in:
J. Nick Koston
2025-07-20 14:27:34 -10:00
parent a45be553ed
commit cc34cc7a4e
3 changed files with 2 additions and 8 deletions

View File

@@ -199,12 +199,4 @@ class APIFrameHelper {
} // namespace api
} // namespace esphome
// Include protocol-specific implementations
#ifdef USE_API_NOISE
#include "api_frame_helper_noise.h"
#endif
#ifdef USE_API_PLAINTEXT
#include "api_frame_helper_plaintext.h"
#endif
#endif // USE_API

View File

@@ -1,4 +1,5 @@
#pragma once
#include "api_frame_helper.h"
#ifdef USE_API
#ifdef USE_API_NOISE
#include "noise/protocol.h"

View File

@@ -1,4 +1,5 @@
#pragma once
#include "api_frame_helper.h"
#ifdef USE_API
#ifdef USE_API_PLAINTEXT