From 1f067faa34d3a7d735bbff51b835fcf1bc224e79 Mon Sep 17 00:00:00 2001 From: t0urista Date: Tue, 29 Oct 2024 13:37:18 +0100 Subject: [PATCH] Update bthome.cpp --- esphome/components/bthome/bthome.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/esphome/components/bthome/bthome.cpp b/esphome/components/bthome/bthome.cpp index 630b19ab20..dee6a58168 100644 --- a/esphome/components/bthome/bthome.cpp +++ b/esphome/components/bthome/bthome.cpp @@ -375,10 +375,13 @@ void BTHome::dump_config() { } #ifdef USE_BINARY_SENSOR LOG_BINARY_SENSOR(" ", "Window", this->window_); + LOG_BINARY_SENSOR(" ", "Motion", this->motion_); #endif #ifdef USE_SENSOR LOG_SENSOR(" ", "Illuminance", this->illuminance_); LOG_SENSOR(" ", "Battery Level", this->battery_level_); + LOG_SENSOR(" ", "Temperature", this->temperature_); + LOG_SENSOR(" ", "Humidity", this->humidity_); #endif }