mirror of
https://github.com/esphome/esphome.git
synced 2025-03-02 06:52:27 +01:00
* refactored xiaomi sensors * fix lint * fixed and added tests * fix namespace * LYWSD02 has no battery level * fixed enum * fix * fix case * fix spaces in empty line... * inform users of old sensors about the change
21 lines
465 B
C++
21 lines
465 B
C++
#include "xiaomi_cgg1.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace xiaomi_cgg1 {
|
|
|
|
static const char *TAG = "xiaomi_cgg1";
|
|
|
|
void XiaomiCGG1::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "Xiaomi CGG1");
|
|
LOG_SENSOR(" ", "Temperature", this->temperature_);
|
|
LOG_SENSOR(" ", "Humidity", this->humidity_);
|
|
LOG_SENSOR(" ", "Battery Level", this->battery_level_);
|
|
}
|
|
|
|
} // namespace xiaomi_cgg1
|
|
} // namespace esphome
|
|
|
|
#endif
|