mirror of
https://github.com/esphome/esphome.git
synced 2025-11-01 15:41:52 +00:00
preen
This commit is contained in:
@@ -153,8 +153,8 @@ void CCS811Component::dump_config() {
|
|||||||
ESP_LOGCONFIG(TAG, "CCS811");
|
ESP_LOGCONFIG(TAG, "CCS811");
|
||||||
LOG_I2C_DEVICE(this)
|
LOG_I2C_DEVICE(this)
|
||||||
LOG_UPDATE_INTERVAL(this)
|
LOG_UPDATE_INTERVAL(this)
|
||||||
LOG_SENSOR(" ", "CO2 Sensor", this->co2_)
|
LOG_SENSOR(" ", "CO2 Sensor", this->co2_);
|
||||||
LOG_SENSOR(" ", "TVOC Sensor", this->tvoc_)
|
LOG_SENSOR(" ", "TVOC Sensor", this->tvoc_);
|
||||||
LOG_TEXT_SENSOR(" ", "Firmware Version Sensor", this->version_)
|
LOG_TEXT_SENSOR(" ", "Firmware Version Sensor", this->version_)
|
||||||
if (this->baseline_) {
|
if (this->baseline_) {
|
||||||
ESP_LOGCONFIG(TAG, " Baseline: %04X", *this->baseline_);
|
ESP_LOGCONFIG(TAG, " Baseline: %04X", *this->baseline_);
|
||||||
|
|||||||
@@ -58,10 +58,10 @@ void GroveGasMultichannelV2Component::dump_config() {
|
|||||||
ESP_LOGCONFIG(TAG, "Grove Multichannel Gas Sensor V2");
|
ESP_LOGCONFIG(TAG, "Grove Multichannel Gas Sensor V2");
|
||||||
LOG_I2C_DEVICE(this)
|
LOG_I2C_DEVICE(this)
|
||||||
LOG_UPDATE_INTERVAL(this)
|
LOG_UPDATE_INTERVAL(this)
|
||||||
LOG_SENSOR(" ", "Nitrogen Dioxide", this->nitrogen_dioxide_sensor_)
|
LOG_SENSOR(" ", "Nitrogen Dioxide", this->nitrogen_dioxide_sensor_);
|
||||||
LOG_SENSOR(" ", "Ethanol", this->ethanol_sensor_)
|
LOG_SENSOR(" ", "Ethanol", this->ethanol_sensor_);
|
||||||
LOG_SENSOR(" ", "Carbon Monoxide", this->carbon_monoxide_sensor_)
|
LOG_SENSOR(" ", "Carbon Monoxide", this->carbon_monoxide_sensor_);
|
||||||
LOG_SENSOR(" ", "TVOC", this->tvoc_sensor_)
|
LOG_SENSOR(" ", "TVOC", this->tvoc_sensor_);
|
||||||
|
|
||||||
if (this->is_failed()) {
|
if (this->is_failed()) {
|
||||||
switch (this->error_code_) {
|
switch (this->error_code_) {
|
||||||
|
|||||||
@@ -43,10 +43,10 @@ void HLW8012Component::dump_config() {
|
|||||||
" Voltage Divider: %.1f",
|
" Voltage Divider: %.1f",
|
||||||
this->change_mode_every_, this->current_resistor_ * 1000.0f, this->voltage_divider_);
|
this->change_mode_every_, this->current_resistor_ * 1000.0f, this->voltage_divider_);
|
||||||
LOG_UPDATE_INTERVAL(this)
|
LOG_UPDATE_INTERVAL(this)
|
||||||
LOG_SENSOR(" ", "Voltage", this->voltage_sensor_)
|
LOG_SENSOR(" ", "Voltage", this->voltage_sensor_);
|
||||||
LOG_SENSOR(" ", "Current", this->current_sensor_)
|
LOG_SENSOR(" ", "Current", this->current_sensor_);
|
||||||
LOG_SENSOR(" ", "Power", this->power_sensor_)
|
LOG_SENSOR(" ", "Power", this->power_sensor_);
|
||||||
LOG_SENSOR(" ", "Energy", this->energy_sensor_)
|
LOG_SENSOR(" ", "Energy", this->energy_sensor_);
|
||||||
}
|
}
|
||||||
float HLW8012Component::get_setup_priority() const { return setup_priority::DATA; }
|
float HLW8012Component::get_setup_priority() const { return setup_priority::DATA; }
|
||||||
void HLW8012Component::update() {
|
void HLW8012Component::update() {
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ void IRAM_ATTR PulseWidthSensorStore::gpio_intr(PulseWidthSensorStore *arg) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void PulseWidthSensor::dump_config() {
|
void PulseWidthSensor::dump_config() {
|
||||||
LOG_SENSOR("", "Pulse Width", this)
|
LOG_SENSOR("", "Pulse Width", this);
|
||||||
LOG_UPDATE_INTERVAL(this)
|
LOG_UPDATE_INTERVAL(this)
|
||||||
LOG_PIN(" Pin: ", this->pin_);
|
LOG_PIN(" Pin: ", this->pin_);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -105,9 +105,9 @@ void UFireECComponent::dump_config() {
|
|||||||
ESP_LOGCONFIG(TAG, "uFire-EC");
|
ESP_LOGCONFIG(TAG, "uFire-EC");
|
||||||
LOG_I2C_DEVICE(this)
|
LOG_I2C_DEVICE(this)
|
||||||
LOG_UPDATE_INTERVAL(this)
|
LOG_UPDATE_INTERVAL(this)
|
||||||
LOG_SENSOR(" ", "EC Sensor", this->ec_sensor_)
|
LOG_SENSOR(" ", "EC Sensor", this->ec_sensor_);
|
||||||
LOG_SENSOR(" ", "Temperature Sensor", this->temperature_sensor_)
|
LOG_SENSOR(" ", "Temperature Sensor", this->temperature_sensor_);
|
||||||
LOG_SENSOR(" ", "Temperature Sensor external", this->temperature_sensor_external_)
|
LOG_SENSOR(" ", "Temperature Sensor external", this->temperature_sensor_external_);
|
||||||
ESP_LOGCONFIG(TAG,
|
ESP_LOGCONFIG(TAG,
|
||||||
" Temperature Compensation: %f\n"
|
" Temperature Compensation: %f\n"
|
||||||
" Temperature Coefficient: %f",
|
" Temperature Coefficient: %f",
|
||||||
|
|||||||
@@ -142,9 +142,9 @@ void UFireISEComponent::dump_config() {
|
|||||||
ESP_LOGCONFIG(TAG, "uFire-ISE");
|
ESP_LOGCONFIG(TAG, "uFire-ISE");
|
||||||
LOG_I2C_DEVICE(this)
|
LOG_I2C_DEVICE(this)
|
||||||
LOG_UPDATE_INTERVAL(this)
|
LOG_UPDATE_INTERVAL(this)
|
||||||
LOG_SENSOR(" ", "PH Sensor", this->ph_sensor_)
|
LOG_SENSOR(" ", "PH Sensor", this->ph_sensor_);
|
||||||
LOG_SENSOR(" ", "Temperature Sensor", this->temperature_sensor_)
|
LOG_SENSOR(" ", "Temperature Sensor", this->temperature_sensor_);
|
||||||
LOG_SENSOR(" ", "Temperature Sensor external", this->temperature_sensor_external_)
|
LOG_SENSOR(" ", "Temperature Sensor external", this->temperature_sensor_external_);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ufire_ise
|
} // namespace ufire_ise
|
||||||
|
|||||||
Reference in New Issue
Block a user