mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-20 13:03:28 +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>
118 lines
3.4 KiB
C++
118 lines
3.4 KiB
C++
#include "zyaura.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace zyaura {
|
|
|
|
static const char *const TAG = "zyaura";
|
|
|
|
bool IRAM_ATTR ZaDataProcessor::decode(uint32_t ms, bool data) {
|
|
// check if a new message has started, based on time since previous bit
|
|
if ((ms - this->prev_ms_) > ZA_MAX_MS) {
|
|
this->num_bits_ = 0;
|
|
}
|
|
this->prev_ms_ = ms;
|
|
|
|
// number of bits received is basically the "state"
|
|
if (this->num_bits_ < ZA_FRAME_SIZE) {
|
|
// store it while it fits
|
|
int idx = this->num_bits_ / 8;
|
|
this->buffer_[idx] = (this->buffer_[idx] << 1) | (data ? 1 : 0);
|
|
this->num_bits_++;
|
|
|
|
// are we done yet?
|
|
if (this->num_bits_ == ZA_FRAME_SIZE) {
|
|
// validate checksum
|
|
uint8_t checksum = this->buffer_[ZA_BYTE_TYPE] + this->buffer_[ZA_BYTE_HIGH] + this->buffer_[ZA_BYTE_LOW];
|
|
if (checksum != this->buffer_[ZA_BYTE_SUM] || this->buffer_[ZA_BYTE_END] != ZA_MSG_DELIMETER) {
|
|
return false;
|
|
}
|
|
|
|
this->message->type = (ZaDataType) this->buffer_[ZA_BYTE_TYPE];
|
|
this->message->value = this->buffer_[ZA_BYTE_HIGH] << 8 | this->buffer_[ZA_BYTE_LOW];
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void ZaSensorStore::setup(InternalGPIOPin *pin_clock, InternalGPIOPin *pin_data) {
|
|
pin_clock->setup();
|
|
pin_data->setup();
|
|
this->pin_clock_ = pin_clock->to_isr();
|
|
this->pin_data_ = pin_data->to_isr();
|
|
pin_clock->attach_interrupt(ZaSensorStore::interrupt, this, gpio::INTERRUPT_FALLING_EDGE);
|
|
}
|
|
|
|
void IRAM_ATTR ZaSensorStore::interrupt(ZaSensorStore *arg) {
|
|
uint32_t now = millis();
|
|
bool data_bit = arg->pin_data_.digital_read();
|
|
|
|
if (arg->processor_.decode(now, data_bit)) {
|
|
arg->set_data_(arg->processor_.message);
|
|
}
|
|
}
|
|
|
|
void IRAM_ATTR ZaSensorStore::set_data_(ZaMessage *message) {
|
|
switch (message->type) {
|
|
case HUMIDITY:
|
|
this->humidity = (message->value > 10000) ? NAN : (message->value / 100.0f);
|
|
break;
|
|
|
|
case TEMPERATURE:
|
|
this->temperature = (message->value > 5970) ? NAN : (message->value / 16.0f - 273.15f);
|
|
break;
|
|
|
|
case CO2:
|
|
this->co2 = (message->value > 10000) ? NAN : message->value;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
bool ZyAuraSensor::publish_state_(sensor::Sensor *sensor, float *value) {
|
|
// Sensor doesn't added to configuration
|
|
if (sensor == nullptr) {
|
|
return true;
|
|
}
|
|
|
|
sensor->publish_state(*value);
|
|
|
|
// Sensor reported wrong value
|
|
if (std::isnan(*value)) {
|
|
ESP_LOGW(TAG, "Sensor reported invalid data. Is the update interval too small?");
|
|
this->status_set_warning();
|
|
return false;
|
|
}
|
|
|
|
*value = NAN;
|
|
return true;
|
|
}
|
|
|
|
void ZyAuraSensor::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "ZyAuraSensor:");
|
|
LOG_PIN(" Pin Clock: ", this->pin_clock_);
|
|
LOG_PIN(" Pin Data: ", this->pin_data_);
|
|
LOG_UPDATE_INTERVAL(this);
|
|
|
|
LOG_SENSOR(" ", "CO2", this->co2_sensor_);
|
|
LOG_SENSOR(" ", "Temperature", this->temperature_sensor_);
|
|
LOG_SENSOR(" ", "Humidity", this->humidity_sensor_);
|
|
}
|
|
|
|
void ZyAuraSensor::update() {
|
|
bool co2_result = this->publish_state_(this->co2_sensor_, &this->store_.co2);
|
|
bool temperature_result = this->publish_state_(this->temperature_sensor_, &this->store_.temperature);
|
|
bool humidity_result = this->publish_state_(this->humidity_sensor_, &this->store_.humidity);
|
|
|
|
if (co2_result && temperature_result && humidity_result) {
|
|
this->status_clear_warning();
|
|
}
|
|
}
|
|
|
|
} // namespace zyaura
|
|
} // namespace esphome
|