mirror of
https://github.com/esphome/esphome.git
synced 2025-03-19 09:08:16 +00:00
322 lines
12 KiB
C++
322 lines
12 KiB
C++
#include "commands.h"
|
|
|
|
#include <cmath>
|
|
|
|
#include "esphome/core/log.h"
|
|
|
|
#include "dfrobot_sen0395.h"
|
|
|
|
namespace esphome {
|
|
namespace dfrobot_sen0395 {
|
|
|
|
static const char *const TAG = "dfrobot_sen0395.commands";
|
|
|
|
uint8_t Command::execute(DfrobotSen0395Component *parent) {
|
|
this->parent_ = parent;
|
|
if (this->cmd_sent_) {
|
|
if (this->parent_->read_message_()) {
|
|
std::string message(this->parent_->read_buffer_);
|
|
if (message.rfind("is not recognized as a CLI command") != std::string::npos) {
|
|
ESP_LOGD(TAG, "Command not recognized properly by sensor");
|
|
if (this->retries_left_ > 0) {
|
|
this->retries_left_ -= 1;
|
|
this->cmd_sent_ = false;
|
|
ESP_LOGD(TAG, "Retrying...");
|
|
return 0;
|
|
} else {
|
|
this->parent_->find_prompt_();
|
|
return 1; // Command done
|
|
}
|
|
}
|
|
uint8_t rc = on_message(message);
|
|
if (rc == 2) {
|
|
if (this->retries_left_ > 0) {
|
|
this->retries_left_ -= 1;
|
|
this->cmd_sent_ = false;
|
|
ESP_LOGD(TAG, "Retrying...");
|
|
return 0;
|
|
} else {
|
|
this->parent_->find_prompt_();
|
|
return 1; // Command done
|
|
}
|
|
} else if (rc == 0) {
|
|
return 0;
|
|
} else {
|
|
this->parent_->find_prompt_();
|
|
return 1;
|
|
}
|
|
}
|
|
if (millis() - this->parent_->ts_last_cmd_sent_ > this->timeout_ms_) {
|
|
ESP_LOGD(TAG, "Command timeout");
|
|
if (this->retries_left_ > 0) {
|
|
this->retries_left_ -= 1;
|
|
this->cmd_sent_ = false;
|
|
ESP_LOGD(TAG, "Retrying...");
|
|
} else {
|
|
return 1; // Command done
|
|
}
|
|
}
|
|
} else if (this->parent_->send_cmd_(this->cmd_.c_str(), this->cmd_duration_ms_)) {
|
|
this->cmd_sent_ = true;
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t ReadStateCommand::execute(DfrobotSen0395Component *parent) {
|
|
this->parent_ = parent;
|
|
if (this->parent_->read_message_()) {
|
|
std::string message(this->parent_->read_buffer_);
|
|
if (message.rfind("$JYBSS,0, , , *") != std::string::npos) {
|
|
this->parent_->set_detected_(false);
|
|
this->parent_->set_active(true);
|
|
return 1; // Command done
|
|
} else if (message.rfind("$JYBSS,1, , , *") != std::string::npos) {
|
|
this->parent_->set_detected_(true);
|
|
this->parent_->set_active(true);
|
|
return 1; // Command done
|
|
}
|
|
}
|
|
if (millis() - this->parent_->ts_last_cmd_sent_ > this->timeout_ms_) {
|
|
return 1; // Command done, timeout
|
|
}
|
|
return 0; // Command not done yet.
|
|
}
|
|
|
|
uint8_t ReadStateCommand::on_message(std::string &message) { return 1; }
|
|
|
|
uint8_t PowerCommand::on_message(std::string &message) {
|
|
if (message == "sensor stopped already") {
|
|
this->parent_->set_active(false);
|
|
ESP_LOGI(TAG, "Stopped sensor (already stopped)");
|
|
return 1; // Command done
|
|
} else if (message == "sensor started already") {
|
|
this->parent_->set_active(true);
|
|
ESP_LOGI(TAG, "Started sensor (already started)");
|
|
return 1; // Command done
|
|
} else if (message == "new parameter isn't save, can't startSensor") {
|
|
this->parent_->set_active(false);
|
|
ESP_LOGE(TAG, "Can't start sensor! (Use SaveCfgCommand to save config first)");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
this->parent_->set_active(this->power_on_);
|
|
if (this->power_on_) {
|
|
ESP_LOGI(TAG, "Started sensor");
|
|
} else {
|
|
ESP_LOGI(TAG, "Stopped sensor");
|
|
}
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet.
|
|
}
|
|
|
|
DetRangeCfgCommand::DetRangeCfgCommand(float min1, float max1, float min2, float max2, float min3, float max3,
|
|
float min4, float max4) {
|
|
// TODO: Print warning when values are rounded
|
|
if (min1 < 0 || max1 < 0) {
|
|
this->min1_ = min1 = 0;
|
|
this->max1_ = max1 = 0;
|
|
this->min2_ = min2 = this->max2_ = max2 = this->min3_ = min3 = this->max3_ = max3 = this->min4_ = min4 =
|
|
this->max4_ = max4 = -1;
|
|
|
|
ESP_LOGW(TAG, "DetRangeCfgCommand invalid input parameters. Using range config 0 0.");
|
|
|
|
this->cmd_ = "detRangeCfg -1 0 0";
|
|
} else if (min2 < 0 || max2 < 0) {
|
|
this->min1_ = min1 = round(min1 / 0.15) * 0.15;
|
|
this->max1_ = max1 = round(max1 / 0.15) * 0.15;
|
|
this->min2_ = min2 = this->max2_ = max2 = this->min3_ = min3 = this->max3_ = max3 = this->min4_ = min4 =
|
|
this->max4_ = max4 = -1;
|
|
|
|
this->cmd_ = str_sprintf("detRangeCfg -1 %.0f %.0f", min1 / 0.15, max1 / 0.15);
|
|
} else if (min3 < 0 || max3 < 0) {
|
|
this->min1_ = min1 = round(min1 / 0.15) * 0.15;
|
|
this->max1_ = max1 = round(max1 / 0.15) * 0.15;
|
|
this->min2_ = min2 = round(min2 / 0.15) * 0.15;
|
|
this->max2_ = max2 = round(max2 / 0.15) * 0.15;
|
|
this->min3_ = min3 = this->max3_ = max3 = this->min4_ = min4 = this->max4_ = max4 = -1;
|
|
|
|
this->cmd_ = str_sprintf("detRangeCfg -1 %.0f %.0f %.0f %.0f", min1 / 0.15, max1 / 0.15, min2 / 0.15, max2 / 0.15);
|
|
} else if (min4 < 0 || max4 < 0) {
|
|
this->min1_ = min1 = round(min1 / 0.15) * 0.15;
|
|
this->max1_ = max1 = round(max1 / 0.15) * 0.15;
|
|
this->min2_ = min2 = round(min2 / 0.15) * 0.15;
|
|
this->max2_ = max2 = round(max2 / 0.15) * 0.15;
|
|
this->min3_ = min3 = round(min3 / 0.15) * 0.15;
|
|
this->max3_ = max3 = round(max3 / 0.15) * 0.15;
|
|
this->min4_ = min4 = this->max4_ = max4 = -1;
|
|
|
|
this->cmd_ = str_sprintf("detRangeCfg -1 "
|
|
"%.0f %.0f %.0f %.0f %.0f %.0f",
|
|
min1 / 0.15, max1 / 0.15, min2 / 0.15, max2 / 0.15, min3 / 0.15, max3 / 0.15);
|
|
} else {
|
|
this->min1_ = min1 = round(min1 / 0.15) * 0.15;
|
|
this->max1_ = max1 = round(max1 / 0.15) * 0.15;
|
|
this->min2_ = min2 = round(min2 / 0.15) * 0.15;
|
|
this->max2_ = max2 = round(max2 / 0.15) * 0.15;
|
|
this->min3_ = min3 = round(min3 / 0.15) * 0.15;
|
|
this->max3_ = max3 = round(max3 / 0.15) * 0.15;
|
|
this->min4_ = min4 = round(min4 / 0.15) * 0.15;
|
|
this->max4_ = max4 = round(max4 / 0.15) * 0.15;
|
|
|
|
this->cmd_ = str_sprintf("detRangeCfg -1 "
|
|
"%.0f %.0f %.0f %.0f %.0f %.0f %.0f %.0f",
|
|
min1 / 0.15, max1 / 0.15, min2 / 0.15, max2 / 0.15, min3 / 0.15, max3 / 0.15, min4 / 0.15,
|
|
max4 / 0.15);
|
|
}
|
|
|
|
this->min1_ = min1;
|
|
this->max1_ = max1;
|
|
this->min2_ = min2;
|
|
this->max2_ = max2;
|
|
this->min3_ = min3;
|
|
this->max3_ = max3;
|
|
this->min4_ = min4;
|
|
this->max4_ = max4;
|
|
};
|
|
|
|
uint8_t DetRangeCfgCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot configure range config. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Updated detection area config:");
|
|
ESP_LOGI(TAG, "Detection area 1 from %.02fm to %.02fm.", this->min1_, this->max1_);
|
|
if (this->min2_ >= 0 && this->max2_ >= 0) {
|
|
ESP_LOGI(TAG, "Detection area 2 from %.02fm to %.02fm.", this->min2_, this->max2_);
|
|
}
|
|
if (this->min3_ >= 0 && this->max3_ >= 0) {
|
|
ESP_LOGI(TAG, "Detection area 3 from %.02fm to %.02fm.", this->min3_, this->max3_);
|
|
}
|
|
if (this->min4_ >= 0 && this->max4_ >= 0) {
|
|
ESP_LOGI(TAG, "Detection area 4 from %.02fm to %.02fm.", this->min4_, this->max4_);
|
|
}
|
|
ESP_LOGD(TAG, "Used command: %s", this->cmd_.c_str());
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet.
|
|
}
|
|
|
|
SetLatencyCommand::SetLatencyCommand(float delay_after_detection, float delay_after_disappear) {
|
|
delay_after_detection = std::round(delay_after_detection / 0.025f) * 0.025f;
|
|
delay_after_disappear = std::round(delay_after_disappear / 0.025f) * 0.025f;
|
|
this->delay_after_detection_ = clamp(delay_after_detection, 0.0f, 1638.375f);
|
|
this->delay_after_disappear_ = clamp(delay_after_disappear, 0.0f, 1638.375f);
|
|
this->cmd_ = str_sprintf("setLatency %.03f %.03f", this->delay_after_detection_, this->delay_after_disappear_);
|
|
};
|
|
|
|
uint8_t SetLatencyCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot configure output latency. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Updated output latency config:");
|
|
ESP_LOGI(TAG, "Signal that someone was detected is delayed by %.03f s.", this->delay_after_detection_);
|
|
ESP_LOGI(TAG, "Signal that nobody is detected anymore is delayed by %.03f s.", this->delay_after_disappear_);
|
|
ESP_LOGD(TAG, "Used command: %s", this->cmd_.c_str());
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t SensorCfgStartCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot configure sensor startup behavior. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Updated sensor startup behavior:");
|
|
if (startup_mode_) {
|
|
this->parent_->set_start_after_boot(true);
|
|
ESP_LOGI(TAG, "Sensor will start automatically after power-on.");
|
|
} else {
|
|
this->parent_->set_start_after_boot(false);
|
|
ESP_LOGI(TAG, "Sensor needs to be started manually after power-on.");
|
|
}
|
|
ESP_LOGD(TAG, "Used command: %s", this->cmd_.c_str());
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t FactoryResetCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot factory reset. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Sensor factory reset done.");
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t ResetSystemCommand::on_message(std::string &message) {
|
|
if (message == "leapMMW:/>") {
|
|
ESP_LOGI(TAG, "Restarted sensor.");
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t SaveCfgCommand::on_message(std::string &message) {
|
|
if (message == "no parameter has changed") {
|
|
ESP_LOGI(TAG, "Not saving config (no parameter changed).");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Saved config. Saving a lot may damage the sensor.");
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t LedModeCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot set led mode. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Set led mode done.");
|
|
if (this->active_) {
|
|
this->parent_->set_led_active(true);
|
|
ESP_LOGI(TAG, "Sensor LED will blink.");
|
|
} else {
|
|
this->parent_->set_led_active(false);
|
|
ESP_LOGI(TAG, "Turned off LED.");
|
|
}
|
|
ESP_LOGD(TAG, "Used command: %s", this->cmd_.c_str());
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t UartOutputCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot set uart output mode. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Set uart mode done.");
|
|
if (this->active_) {
|
|
this->parent_->set_uart_presence_active(true);
|
|
ESP_LOGI(TAG, "Presence information is sent via UART and GPIO.");
|
|
} else {
|
|
this->parent_->set_uart_presence_active(false);
|
|
ESP_LOGI(TAG, "Presence information is only sent via GPIO.");
|
|
}
|
|
ESP_LOGD(TAG, "Used command: %s", this->cmd_.c_str());
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
uint8_t SensitivityCommand::on_message(std::string &message) {
|
|
if (message == "sensor is not stopped") {
|
|
ESP_LOGE(TAG, "Cannot set sensitivity. Sensor is not stopped!");
|
|
return 1; // Command done
|
|
} else if (message == "Done") {
|
|
ESP_LOGI(TAG, "Set sensitivity done. Set to value %d.", this->sensitivity_);
|
|
ESP_LOGD(TAG, "Used command: %s", this->cmd_.c_str());
|
|
return 1; // Command done
|
|
}
|
|
return 0; // Command not done yet
|
|
}
|
|
|
|
} // namespace dfrobot_sen0395
|
|
} // namespace esphome
|