#pragma once #include #include #include #include "utils.h" namespace esphome { namespace fastcon { static const std::array DEFAULT_ENCRYPT_KEY = {0x5e, 0x36, 0x7b, 0xc4}; static const std::array DEFAULT_BLE_FASTCON_ADDRESS = {0xC1, 0xC2, 0xC3}; std::vector get_rf_payload(const std::vector &addr, const std::vector &data); std::vector prepare_payload(const std::vector &addr, const std::vector &data); } // namespace fastcon } // namespace esphome