unfinished

This commit is contained in:
GrKoR
2025-11-25 18:59:00 -08:00
parent fa3bdf21db
commit 577eac89c8
7 changed files with 484 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <stdint.h>
#include "esphome/core/log.h"
namespace esphome
{
namespace aux_ac
{
using packet_t = uint8_t; // TODO: Replace with actual packet_t definition
void debugMsg(const char *msg, uint8_t dbgLevel, unsigned int line = 0, ...);
void debugPrintPacket(packet_t *packet, uint8_t dbgLevel = ESPHOME_LOG_LEVEL_DEBUG, unsigned int line = __LINE__);
} // namespace aux_ac
} // namespace esphome