mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-22 13:48:29 +02:00
ac0d921413
* Socket refactor and SSL * esp-idf temp * Fixes * Echo component and noise * Add noise API transport support * Updates * ESP-IDF * Complete * Fixes * Fixes * Versions update * New i2c APIs * Complete i2c refactor * SPI migration * Revert ESP Preferences migration, too complex for now * OTA support * Remove echo again * Remove ssl again * GPIOFlags updates * Rename esphal and ICACHE_RAM_ATTR * Make ESP32 arduino compilable again * Fix GPIO flags * Complete pin registry refactor and fixes * Fixes to make test1 compile * Remove sdkconfig file * Ignore sdkconfig file * Fixes in reviewing * Make test2 compile * Make test4 compile * Make test5 compile * Run clang-format * Fix lint errors * Use esp-idf APIs instead of btStart * Another round of fixes * Start implementing ESP8266 * Make test3 compile * Guard esp8266 code * Lint * Reformat * Fixes * Fixes v2 * more fixes * ESP-IDF tidy target * Convert ARDUINO_ARCH_ESPxx * Update WiFiSignalSensor * Update time ifdefs * OTA needs millis from hal * RestartSwitch needs delay from hal * ESP-IDF Uart * Fix OTA blank password * Allow setting sdkconfig * Fix idf partitions and allow setting sdkconfig from yaml * Re-add read/write compat APIs and fix esp8266 uart * Fix esp8266 store log strings in flash * Fix ESP32 arduino preferences not initialized * Update ifdefs * Change how sdkconfig change is detected * Add checks to ci-custom and fix them * Run clang-format * Add esp-idf clang-tidy target and fix errors * Fixes from clang-tidy idf round 2 * Fixes from compiling tests with esp-idf * Run clang-format * Switch test5.yaml to esp-idf * Implement ESP8266 Preferences * Lint * Re-do PIO package version selection a bit * Fix arduinoespressif32 package version * Fix unit tests * Lint * Lint fixes * Fix readv/writev not defined * Fix graphing component * Re-add all old options from core/config.py Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#ifdef USE_ESP32_FRAMEWORK_ARDUINO
|
|
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
#include <esp_gattc_api.h>
|
|
#include <BLEDevice.h>
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/components/ble_client/ble_client.h"
|
|
#include "esphome/components/esp32_ble_tracker/esp32_ble_tracker.h"
|
|
#include "esphome/components/sensor/sensor.h"
|
|
|
|
namespace esphome {
|
|
namespace airthings_wave_plus {
|
|
|
|
class AirthingsWavePlus : public PollingComponent, public ble_client::BLEClientNode {
|
|
public:
|
|
AirthingsWavePlus();
|
|
|
|
void setup() override;
|
|
void dump_config() override;
|
|
void update() override;
|
|
void loop() override;
|
|
|
|
void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
|
|
esp_ble_gattc_cb_param_t *param) override;
|
|
|
|
void set_temperature(sensor::Sensor *temperature) { temperature_sensor_ = temperature; }
|
|
void set_radon(sensor::Sensor *radon) { radon_sensor_ = radon; }
|
|
void set_radon_long_term(sensor::Sensor *radon_long_term) { radon_long_term_sensor_ = radon_long_term; }
|
|
void set_humidity(sensor::Sensor *humidity) { humidity_sensor_ = humidity; }
|
|
void set_pressure(sensor::Sensor *pressure) { pressure_sensor_ = pressure; }
|
|
void set_co2(sensor::Sensor *co2) { co2_sensor_ = co2; }
|
|
void set_tvoc(sensor::Sensor *tvoc) { tvoc_sensor_ = tvoc; }
|
|
|
|
protected:
|
|
bool is_valid_radon_value_(uint16_t radon);
|
|
bool is_valid_voc_value_(uint16_t voc);
|
|
bool is_valid_co2_value_(uint16_t co2);
|
|
|
|
void read_sensors_(uint8_t *value, uint16_t value_len);
|
|
void request_read_values_();
|
|
|
|
sensor::Sensor *temperature_sensor_{nullptr};
|
|
sensor::Sensor *radon_sensor_{nullptr};
|
|
sensor::Sensor *radon_long_term_sensor_{nullptr};
|
|
sensor::Sensor *humidity_sensor_{nullptr};
|
|
sensor::Sensor *pressure_sensor_{nullptr};
|
|
sensor::Sensor *co2_sensor_{nullptr};
|
|
sensor::Sensor *tvoc_sensor_{nullptr};
|
|
|
|
uint16_t handle_;
|
|
esp32_ble_tracker::ESPBTUUID service_uuid_;
|
|
esp32_ble_tracker::ESPBTUUID sensors_data_characteristic_uuid_;
|
|
|
|
struct WavePlusReadings {
|
|
uint8_t version;
|
|
uint8_t humidity;
|
|
uint8_t ambientLight;
|
|
uint8_t unused01;
|
|
uint16_t radon;
|
|
uint16_t radon_lt;
|
|
uint16_t temperature;
|
|
uint16_t pressure;
|
|
uint16_t co2;
|
|
uint16_t voc;
|
|
};
|
|
};
|
|
|
|
} // namespace airthings_wave_plus
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32_FRAMEWORK_ARDUINO
|