mirror of
https://github.com/esphome/esphome.git
synced 2025-01-22 22:04:06 +00:00
6682c43dfa
## Description: Move esphome-core codebase into esphome (and a bunch of other refactors). See https://github.com/esphome/feature-requests/issues/97 Yes this is a shit ton of work and no there's no way to automate it :( But it will be worth it 👍 Progress: - Core support (file copy etc): 80% - Base Abstractions (light, switch): ~50% - Integrations: ~10% - Working? Yes, (but only with ported components). Other refactors: - Moves all codegen related stuff into a single class: `esphome.codegen` (imported as `cg`) - Rework coroutine syntax - Move from `component/platform.py` to `domain/component.py` structure as with HA - Move all defaults out of C++ and into config validation. - Remove `make_...` helpers from Application class. Reason: Merge conflicts with every single new integration. - Pointer Variables are stored globally instead of locally in setup(). Reason: stack size limit. Future work: - Rework const.py - Move all `CONF_...` into a conf class (usage `conf.UPDATE_INTERVAL` vs `CONF_UPDATE_INTERVAL`). Reason: Less convoluted import block - Enable loading from `custom_components` folder. **Related issue (if applicable):** https://github.com/esphome/feature-requests/issues/97 **Pull request in [esphome-docs](https://github.com/esphome/esphome-docs) with documentation (if applicable):** esphome/esphome-docs#<esphome-docs PR number goes here> ## Checklist: - [ ] The code change is tested and works locally. - [ ] Tests have been added to verify that the new code works (under `tests/` folder). If user exposed functionality or configuration variables are added/changed: - [ ] Documentation added/updated in [esphomedocs](https://github.com/OttoWinter/esphomedocs).
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
// Implementation based on:
|
|
// - ESPEasy: https://github.com/letscontrolit/ESPEasy/blob/mega/src/_P034_DHT12.ino
|
|
// - DHT12_sensor_library: https://github.com/xreef/DHT12_sensor_library/blob/master/DHT12.cpp
|
|
|
|
#include "dht12.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace dht12 {
|
|
|
|
static const char *TAG = "dht12";
|
|
|
|
void DHT12Component::update() {
|
|
uint8_t data[5];
|
|
if (!this->read_data_(data)) {
|
|
this->status_set_warning();
|
|
return;
|
|
}
|
|
const uint16_t raw_temperature = uint16_t(data[2]) * 10 + (data[3] & 0x7F);
|
|
float temperature = raw_temperature / 10.0f;
|
|
if ((data[3] & 0x80) != 0) {
|
|
// negative
|
|
temperature *= -1;
|
|
}
|
|
|
|
const uint16_t raw_humidity = uint16_t(data[0]) * 10 + data[1];
|
|
float humidity = raw_humidity / 10.0f;
|
|
|
|
ESP_LOGD(TAG, "Got temperature=%.2f°C humidity=%.2f%%", temperature, humidity);
|
|
if (this->temperature_sensor_ != nullptr)
|
|
this->temperature_sensor_->publish_state(temperature);
|
|
if (this->humidity_sensor_ != nullptr)
|
|
this->humidity_sensor_->publish_state(humidity);
|
|
this->status_clear_warning();
|
|
}
|
|
void DHT12Component::setup() {
|
|
ESP_LOGCONFIG(TAG, "Setting up DHT12...");
|
|
uint8_t data[5];
|
|
if (!this->read_data_(data)) {
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
}
|
|
void DHT12Component::dump_config() {
|
|
ESP_LOGD(TAG, "DHT12:");
|
|
LOG_I2C_DEVICE(this);
|
|
if (this->is_failed()) {
|
|
ESP_LOGE(TAG, "Communication with DHT12 failed!");
|
|
}
|
|
LOG_SENSOR(" ", "Temperature", this->temperature_sensor_);
|
|
LOG_SENSOR(" ", "Humidity", this->humidity_sensor_);
|
|
}
|
|
float DHT12Component::get_setup_priority() const { return setup_priority::DATA; }
|
|
bool DHT12Component::read_data_(uint8_t *data) {
|
|
if (!this->read_bytes(0, data, 5)) {
|
|
ESP_LOGW(TAG, "Updating DHT12 failed!");
|
|
return false;
|
|
}
|
|
|
|
uint8_t checksum = data[0] + data[1] + data[2] + data[3];
|
|
if (data[4] != checksum) {
|
|
ESP_LOGW(TAG, "DHT12 Checksum invalid!");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace dht12
|
|
} // namespace esphome
|