mirror of
https://github.com/esphome/esphome.git
synced 2025-02-22 21:08:16 +00:00
186 lines
5.7 KiB
C++
186 lines
5.7 KiB
C++
#include "xiaomi_ble.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace xiaomi_ble {
|
|
|
|
static const char *TAG = "xiaomi_ble";
|
|
|
|
bool parse_xiaomi_data_byte(uint8_t data_type, const uint8_t *data, uint8_t data_length, XiaomiParseResult &result) {
|
|
switch (data_type) {
|
|
case 0x0D: { // temperature+humidity, 4 bytes, 16-bit signed integer (LE) each, 0.1 °C, 0.1 %
|
|
if (data_length != 4)
|
|
return false;
|
|
const int16_t temperature = uint16_t(data[0]) | (uint16_t(data[1]) << 8);
|
|
const int16_t humidity = uint16_t(data[2]) | (uint16_t(data[3]) << 8);
|
|
result.temperature = temperature / 10.0f;
|
|
result.humidity = humidity / 10.0f;
|
|
return true;
|
|
}
|
|
case 0x0A: { // battery, 1 byte, 8-bit unsigned integer, 1 %
|
|
if (data_length != 1)
|
|
return false;
|
|
result.battery_level = data[0];
|
|
return true;
|
|
}
|
|
case 0x06: { // humidity, 2 bytes, 16-bit signed integer (LE), 0.1 %
|
|
if (data_length != 2)
|
|
return false;
|
|
const int16_t humidity = uint16_t(data[0]) | (uint16_t(data[1]) << 8);
|
|
result.humidity = humidity / 10.0f;
|
|
return true;
|
|
}
|
|
case 0x04: { // temperature, 2 bytes, 16-bit signed integer (LE), 0.1 °C
|
|
if (data_length != 2)
|
|
return false;
|
|
const int16_t temperature = uint16_t(data[0]) | (uint16_t(data[1]) << 8);
|
|
result.temperature = temperature / 10.0f;
|
|
return true;
|
|
}
|
|
case 0x09: { // conductivity, 2 bytes, 16-bit unsigned integer (LE), 1 µS/cm
|
|
if (data_length != 2)
|
|
return false;
|
|
const uint16_t conductivity = uint16_t(data[0]) | (uint16_t(data[1]) << 8);
|
|
result.conductivity = conductivity;
|
|
return true;
|
|
}
|
|
case 0x07: { // illuminance, 3 bytes, 24-bit unsigned integer (LE), 1 lx
|
|
if (data_length != 3)
|
|
return false;
|
|
const uint32_t illuminance = uint32_t(data[0]) | (uint32_t(data[1]) << 8) | (uint32_t(data[2]) << 16);
|
|
result.illuminance = illuminance;
|
|
return true;
|
|
}
|
|
case 0x08: { // soil moisture, 1 byte, 8-bit unsigned integer, 1 %
|
|
if (data_length != 1)
|
|
return false;
|
|
result.moisture = data[0];
|
|
return true;
|
|
}
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
optional<XiaomiParseResult> parse_xiaomi(const esp32_ble_tracker::ESPBTDevice &device) {
|
|
if (!device.get_service_data_uuid().has_value()) {
|
|
// ESP_LOGVV(TAG, "Xiaomi no service data");
|
|
return {};
|
|
}
|
|
|
|
if (!device.get_service_data_uuid()->contains(0x95, 0xFE)) {
|
|
// ESP_LOGVV(TAG, "Xiaomi no service data UUID magic bytes");
|
|
return {};
|
|
}
|
|
|
|
const auto *raw = reinterpret_cast<const uint8_t *>(device.get_service_data().data());
|
|
|
|
if (device.get_service_data().size() < 14) {
|
|
// ESP_LOGVV(TAG, "Xiaomi service data too short!");
|
|
return {};
|
|
}
|
|
|
|
bool is_lywsdcgq = (raw[1] & 0x20) == 0x20 && raw[2] == 0xAA && raw[3] == 0x01;
|
|
bool is_hhccjcy01 = (raw[1] & 0x20) == 0x20 && raw[2] == 0x98 && raw[3] == 0x00;
|
|
bool is_lywsd02 = (raw[1] & 0x20) == 0x20 && raw[2] == 0x5b && raw[3] == 0x04;
|
|
bool is_cgg1 = (raw[1] & 0x30) == 0x30 && raw[2] == 0x47 && raw[3] == 0x03;
|
|
|
|
if (!is_lywsdcgq && !is_hhccjcy01 && !is_lywsd02 && !is_cgg1) {
|
|
// ESP_LOGVV(TAG, "Xiaomi no magic bytes");
|
|
return {};
|
|
}
|
|
|
|
XiaomiParseResult result;
|
|
result.type = XiaomiParseResult::TYPE_HHCCJCY01;
|
|
if (is_lywsdcgq) {
|
|
result.type = XiaomiParseResult::TYPE_LYWSDCGQ;
|
|
} else if (is_lywsd02) {
|
|
result.type = XiaomiParseResult::TYPE_LYWSD02;
|
|
} else if (is_cgg1) {
|
|
result.type = XiaomiParseResult::TYPE_CGG1;
|
|
}
|
|
|
|
uint8_t raw_offset = is_lywsdcgq || is_cgg1 ? 11 : 12;
|
|
|
|
// Data point specs
|
|
// Byte 0: type
|
|
// Byte 1: fixed 0x10
|
|
// Byte 2: length
|
|
// Byte 3..3+len-1: data point value
|
|
|
|
const uint8_t *raw_data = &raw[raw_offset];
|
|
uint8_t data_offset = 0;
|
|
uint8_t data_length = device.get_service_data().size() - raw_offset;
|
|
bool success = false;
|
|
|
|
while (true) {
|
|
if (data_length < 4)
|
|
// at least 4 bytes required
|
|
// type, fixed 0x10, length, 1 byte value
|
|
break;
|
|
|
|
const uint8_t datapoint_type = raw_data[data_offset + 0];
|
|
const uint8_t datapoint_length = raw_data[data_offset + 2];
|
|
|
|
if (data_length < 3 + datapoint_length)
|
|
// 3 fixed bytes plus value length
|
|
break;
|
|
|
|
const uint8_t *datapoint_data = &raw_data[data_offset + 3];
|
|
|
|
if (parse_xiaomi_data_byte(datapoint_type, datapoint_data, datapoint_length, result))
|
|
success = true;
|
|
|
|
data_length -= data_offset + 3 + datapoint_length;
|
|
data_offset += 3 + datapoint_length;
|
|
}
|
|
|
|
if (!success)
|
|
return {};
|
|
return result;
|
|
}
|
|
|
|
bool XiaomiListener::parse_device(const esp32_ble_tracker::ESPBTDevice &device) {
|
|
auto res = parse_xiaomi(device);
|
|
if (!res.has_value())
|
|
return false;
|
|
|
|
const char *name = "HHCCJCY01";
|
|
if (res->type == XiaomiParseResult::TYPE_LYWSDCGQ) {
|
|
name = "LYWSDCGQ";
|
|
} else if (res->type == XiaomiParseResult::TYPE_LYWSD02) {
|
|
name = "LYWSD02";
|
|
} else if (res->type == XiaomiParseResult::TYPE_CGG1) {
|
|
name = "CGG1";
|
|
}
|
|
|
|
ESP_LOGD(TAG, "Got Xiaomi %s (%s):", name, device.address_str().c_str());
|
|
|
|
if (res->temperature.has_value()) {
|
|
ESP_LOGD(TAG, " Temperature: %.1f°C", *res->temperature);
|
|
}
|
|
if (res->humidity.has_value()) {
|
|
ESP_LOGD(TAG, " Humidity: %.1f%%", *res->humidity);
|
|
}
|
|
if (res->battery_level.has_value()) {
|
|
ESP_LOGD(TAG, " Battery Level: %.0f%%", *res->battery_level);
|
|
}
|
|
if (res->conductivity.has_value()) {
|
|
ESP_LOGD(TAG, " Conductivity: %.0fµS/cm", *res->conductivity);
|
|
}
|
|
if (res->illuminance.has_value()) {
|
|
ESP_LOGD(TAG, " Illuminance: %.0flx", *res->illuminance);
|
|
}
|
|
if (res->moisture.has_value()) {
|
|
ESP_LOGD(TAG, " Moisture: %.0f%%", *res->moisture);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace xiaomi_ble
|
|
} // namespace esphome
|
|
|
|
#endif
|