65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
#include "helpers.h"
|
|
|
|
namespace esphome {
|
|
namespace panasonic_heatpump {
|
|
static const char* const TAG = "panasonic_heatpump";
|
|
|
|
void PanasonicHelpers::write_uart_log(UartLogDirection direction, const std::vector<uint8_t>& data,
|
|
const char separator, bool logBytes) {
|
|
PanasonicHelpers::write_uart_log(direction, &data[0], data.size(), separator, logBytes);
|
|
}
|
|
|
|
void PanasonicHelpers::write_uart_log(UartLogDirection direction, const uint8_t* data, const size_t length,
|
|
const char separator, bool logBytes) {
|
|
std::string logStr = "";
|
|
std::string msgDir = direction == UART_LOG_TX ? ">>>" : "<<<";
|
|
std::string msgType = direction == UART_LOG_TX ? "request" : "response";
|
|
switch (data[0]) {
|
|
case 0x31:
|
|
msgType = "initial_" + msgType;
|
|
break;
|
|
case 0x71:
|
|
msgType = "polling_" + msgType;
|
|
if (data[3] == 0x21)
|
|
msgType = "extra_" + msgType;
|
|
break;
|
|
case 0xF1:
|
|
msgType = "command_" + msgType;
|
|
break;
|
|
};
|
|
|
|
ESP_LOGI(TAG, "%s %s[%i]", msgDir.c_str(), msgType.c_str(), length);
|
|
delay(10);
|
|
|
|
if (!logBytes)
|
|
return;
|
|
|
|
logStr += byte_array_to_hex_string(data, length, separator);
|
|
|
|
// Log in chunks to avoid ESP_LOG buffer overflow (https://developers.esphome.io/architecture/logging/).
|
|
// The default log buffer is 512 bytes but UART messages can be larger (203 * 3 = 609 characters + log header).
|
|
for (size_t i = 0; i < logStr.length(); i += UART_LOG_CHUNK_SIZE) {
|
|
ESP_LOGI(TAG, "%s %s", msgDir.c_str(), logStr.substr(i, UART_LOG_CHUNK_SIZE).c_str());
|
|
delay(10);
|
|
}
|
|
}
|
|
|
|
std::string PanasonicHelpers::byte_array_to_hex_string(const std::vector<uint8_t>& data, const char separator) {
|
|
return PanasonicHelpers::byte_array_to_hex_string(&data[0], data.size(), separator);
|
|
}
|
|
|
|
std::string PanasonicHelpers::byte_array_to_hex_string(const uint8_t* data, const size_t length, const char separator) {
|
|
std::string hexStr = "";
|
|
char buffer[5];
|
|
|
|
for (size_t i = 0; i < length; i++) {
|
|
if (i > 0)
|
|
hexStr += separator;
|
|
sprintf(buffer, "%02X", data[i]);
|
|
hexStr += buffer;
|
|
}
|
|
return hexStr;
|
|
}
|
|
} // namespace panasonic_heatpump
|
|
} // namespace esphome
|