mirror of
https://github.com/esphome/esphome.git
synced 2025-02-15 17:38:15 +00:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
#include "airthings_wave_mini.h"
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
namespace esphome {
|
|
namespace airthings_wave_mini {
|
|
|
|
static const char *const TAG = "airthings_wave_mini";
|
|
|
|
void AirthingsWaveMini::read_sensors(uint8_t *raw_value, uint16_t value_len) {
|
|
auto *value = (WaveMiniReadings *) raw_value;
|
|
|
|
if (sizeof(WaveMiniReadings) <= value_len) {
|
|
if (this->humidity_sensor_ != nullptr) {
|
|
this->humidity_sensor_->publish_state(value->humidity / 100.0f);
|
|
}
|
|
|
|
if (this->pressure_sensor_ != nullptr) {
|
|
this->pressure_sensor_->publish_state(value->pressure / 50.0f);
|
|
}
|
|
|
|
if (this->temperature_sensor_ != nullptr) {
|
|
this->temperature_sensor_->publish_state(value->temperature / 100.0f - 273.15f);
|
|
}
|
|
|
|
if ((this->tvoc_sensor_ != nullptr) && this->is_valid_voc_value_(value->voc)) {
|
|
this->tvoc_sensor_->publish_state(value->voc);
|
|
}
|
|
}
|
|
|
|
this->response_received_();
|
|
}
|
|
|
|
void AirthingsWaveMini::dump_config() {
|
|
// these really don't belong here, but there doesn't seem to be a
|
|
// practical way to have the base class use LOG_SENSOR and include
|
|
// the TAG from this component
|
|
LOG_SENSOR(" ", "Humidity", this->humidity_sensor_);
|
|
LOG_SENSOR(" ", "Temperature", this->temperature_sensor_);
|
|
LOG_SENSOR(" ", "Pressure", this->pressure_sensor_);
|
|
LOG_SENSOR(" ", "TVOC", this->tvoc_sensor_);
|
|
LOG_SENSOR(" ", "Battery Voltage", this->battery_voltage_);
|
|
}
|
|
|
|
AirthingsWaveMini::AirthingsWaveMini() {
|
|
this->service_uuid_ = espbt::ESPBTUUID::from_raw(SERVICE_UUID);
|
|
this->sensors_data_characteristic_uuid_ = espbt::ESPBTUUID::from_raw(CHARACTERISTIC_UUID);
|
|
this->access_control_point_characteristic_uuid_ =
|
|
espbt::ESPBTUUID::from_raw(ACCESS_CONTROL_POINT_CHARACTERISTIC_UUID);
|
|
}
|
|
|
|
} // namespace airthings_wave_mini
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32
|