mirror of
https://github.com/esphome/esphome.git
synced 2025-04-03 01:10:29 +01:00
* 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>
170 lines
4.5 KiB
C++
170 lines
4.5 KiB
C++
#ifdef USE_ESP32
|
|
|
|
#include "esp32_touch.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/hal.h"
|
|
|
|
namespace esphome {
|
|
namespace esp32_touch {
|
|
|
|
static const char *const TAG = "esp32_touch";
|
|
|
|
void ESP32TouchComponent::setup() {
|
|
ESP_LOGCONFIG(TAG, "Setting up ESP32 Touch Hub...");
|
|
touch_pad_init();
|
|
|
|
if (this->iir_filter_enabled_()) {
|
|
touch_pad_filter_start(this->iir_filter_);
|
|
}
|
|
|
|
touch_pad_set_meas_time(this->sleep_cycle_, this->meas_cycle_);
|
|
touch_pad_set_voltage(this->high_voltage_reference_, this->low_voltage_reference_, this->voltage_attenuation_);
|
|
|
|
for (auto *child : this->children_) {
|
|
// Disable interrupt threshold
|
|
touch_pad_config(child->get_touch_pad(), 0);
|
|
}
|
|
}
|
|
|
|
void ESP32TouchComponent::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "Config for ESP32 Touch Hub:");
|
|
ESP_LOGCONFIG(TAG, " Meas cycle: %.2fms", this->meas_cycle_ / (8000000.0f / 1000.0f));
|
|
ESP_LOGCONFIG(TAG, " Sleep cycle: %.2fms", this->sleep_cycle_ / (150000.0f / 1000.0f));
|
|
|
|
const char *lv_s;
|
|
switch (this->low_voltage_reference_) {
|
|
case TOUCH_LVOLT_0V5:
|
|
lv_s = "0.5V";
|
|
break;
|
|
case TOUCH_LVOLT_0V6:
|
|
lv_s = "0.6V";
|
|
break;
|
|
case TOUCH_LVOLT_0V7:
|
|
lv_s = "0.7V";
|
|
break;
|
|
case TOUCH_LVOLT_0V8:
|
|
lv_s = "0.8V";
|
|
break;
|
|
default:
|
|
lv_s = "UNKNOWN";
|
|
break;
|
|
}
|
|
ESP_LOGCONFIG(TAG, " Low Voltage Reference: %s", lv_s);
|
|
|
|
const char *hv_s;
|
|
switch (this->high_voltage_reference_) {
|
|
case TOUCH_HVOLT_2V4:
|
|
hv_s = "2.4V";
|
|
break;
|
|
case TOUCH_HVOLT_2V5:
|
|
hv_s = "2.5V";
|
|
break;
|
|
case TOUCH_HVOLT_2V6:
|
|
hv_s = "2.6V";
|
|
break;
|
|
case TOUCH_HVOLT_2V7:
|
|
hv_s = "2.7V";
|
|
break;
|
|
default:
|
|
hv_s = "UNKNOWN";
|
|
break;
|
|
}
|
|
ESP_LOGCONFIG(TAG, " High Voltage Reference: %s", hv_s);
|
|
|
|
const char *atten_s;
|
|
switch (this->voltage_attenuation_) {
|
|
case TOUCH_HVOLT_ATTEN_1V5:
|
|
atten_s = "1.5V";
|
|
break;
|
|
case TOUCH_HVOLT_ATTEN_1V:
|
|
atten_s = "1V";
|
|
break;
|
|
case TOUCH_HVOLT_ATTEN_0V5:
|
|
atten_s = "0.5V";
|
|
break;
|
|
case TOUCH_HVOLT_ATTEN_0V:
|
|
atten_s = "0V";
|
|
break;
|
|
default:
|
|
atten_s = "UNKNOWN";
|
|
break;
|
|
}
|
|
ESP_LOGCONFIG(TAG, " Voltage Attenuation: %s", atten_s);
|
|
|
|
if (this->iir_filter_enabled_()) {
|
|
ESP_LOGCONFIG(TAG, " IIR Filter: %ums", this->iir_filter_);
|
|
touch_pad_filter_start(this->iir_filter_);
|
|
} else {
|
|
ESP_LOGCONFIG(TAG, " IIR Filter DISABLED");
|
|
}
|
|
if (this->setup_mode_) {
|
|
ESP_LOGCONFIG(TAG, " Setup Mode ENABLED!");
|
|
}
|
|
|
|
for (auto *child : this->children_) {
|
|
LOG_BINARY_SENSOR(" ", "Touch Pad", child);
|
|
ESP_LOGCONFIG(TAG, " Pad: T%d", child->get_touch_pad());
|
|
ESP_LOGCONFIG(TAG, " Threshold: %u", child->get_threshold());
|
|
}
|
|
}
|
|
|
|
void ESP32TouchComponent::loop() {
|
|
const uint32_t now = millis();
|
|
bool should_print = this->setup_mode_ && now - this->setup_mode_last_log_print_ > 250;
|
|
for (auto *child : this->children_) {
|
|
uint16_t value;
|
|
if (this->iir_filter_enabled_()) {
|
|
touch_pad_read_filtered(child->get_touch_pad(), &value);
|
|
} else {
|
|
touch_pad_read(child->get_touch_pad(), &value);
|
|
}
|
|
|
|
child->value_ = value;
|
|
child->publish_state(value < child->get_threshold());
|
|
|
|
if (should_print) {
|
|
ESP_LOGD(TAG, "Touch Pad '%s' (T%u): %u", child->get_name().c_str(), child->get_touch_pad(), value);
|
|
}
|
|
}
|
|
|
|
if (should_print) {
|
|
// Avoid spamming logs
|
|
this->setup_mode_last_log_print_ = now;
|
|
}
|
|
}
|
|
|
|
void ESP32TouchComponent::on_shutdown() {
|
|
bool is_wakeup_source = false;
|
|
|
|
if (this->iir_filter_enabled_()) {
|
|
touch_pad_filter_stop();
|
|
touch_pad_filter_delete();
|
|
}
|
|
|
|
for (auto *child : this->children_) {
|
|
if (child->get_wakeup_threshold() != 0) {
|
|
if (!is_wakeup_source) {
|
|
is_wakeup_source = true;
|
|
// Touch sensor FSM mode must be 'TOUCH_FSM_MODE_TIMER' to use it to wake-up.
|
|
touch_pad_set_fsm_mode(TOUCH_FSM_MODE_TIMER);
|
|
}
|
|
|
|
// No filter available when using as wake-up source.
|
|
touch_pad_config(child->get_touch_pad(), child->get_wakeup_threshold());
|
|
}
|
|
}
|
|
|
|
if (!is_wakeup_source) {
|
|
touch_pad_deinit();
|
|
}
|
|
}
|
|
|
|
ESP32TouchBinarySensor::ESP32TouchBinarySensor(const std::string &name, touch_pad_t touch_pad, uint16_t threshold,
|
|
uint16_t wakeup_threshold)
|
|
: BinarySensor(name), touch_pad_(touch_pad), threshold_(threshold), wakeup_threshold_(wakeup_threshold) {}
|
|
|
|
} // namespace esp32_touch
|
|
} // namespace esphome
|
|
|
|
#endif
|