2019-04-17 12:06:00 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "esphome/core/defines.h"
|
|
|
|
|
2021-09-20 11:47:51 +02:00
|
|
|
#ifdef USE_MQTT
|
2019-04-17 12:06:00 +02:00
|
|
|
#ifdef USE_SENSOR
|
|
|
|
|
|
|
|
#include "esphome/components/sensor/sensor.h"
|
|
|
|
#include "mqtt_component.h"
|
|
|
|
|
|
|
|
namespace esphome {
|
|
|
|
namespace mqtt {
|
|
|
|
|
|
|
|
class MQTTSensorComponent : public mqtt::MQTTComponent {
|
|
|
|
public:
|
|
|
|
/** Construct this MQTTSensorComponent instance with the provided friendly_name and sensor
|
|
|
|
*
|
|
|
|
* Note the sensor is never stored and is only used for initializing some values of this class.
|
|
|
|
* If sensor is nullptr, then automatic initialization of these fields is disabled.
|
|
|
|
*
|
|
|
|
* @param sensor The sensor, this can be null to disable automatic setup.
|
|
|
|
*/
|
|
|
|
explicit MQTTSensorComponent(sensor::Sensor *sensor);
|
|
|
|
|
|
|
|
/// Setup an expiry, 0 disables it
|
|
|
|
void set_expire_after(uint32_t expire_after);
|
|
|
|
/// Disable Home Assistant value expiry.
|
|
|
|
void disable_expire_after();
|
|
|
|
|
2022-01-01 10:31:43 +01:00
|
|
|
void send_discovery(JsonObject root, mqtt::SendDiscoveryConfig &config) override;
|
2019-04-17 12:06:00 +02:00
|
|
|
|
|
|
|
// ========== INTERNAL METHODS ==========
|
|
|
|
// (In most use cases you won't need these)
|
|
|
|
/// Override setup.
|
|
|
|
void setup() override;
|
|
|
|
|
|
|
|
void dump_config() override;
|
|
|
|
|
|
|
|
/// Get the expire_after in milliseconds used for Home Assistant discovery, first checks override.
|
|
|
|
uint32_t get_expire_after() const;
|
|
|
|
|
|
|
|
bool publish_state(float value);
|
|
|
|
bool send_initial_state() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/// Override for MQTTComponent, returns "sensor".
|
|
|
|
std::string component_type() const override;
|
2021-10-10 10:37:05 +02:00
|
|
|
const EntityBase *get_entity() const override;
|
2019-04-17 12:06:00 +02:00
|
|
|
std::string unique_id() override;
|
|
|
|
|
|
|
|
sensor::Sensor *sensor_;
|
|
|
|
optional<uint32_t> expire_after_; // Override the expire after advertised to Home Assistant
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mqtt
|
|
|
|
} // namespace esphome
|
|
|
|
|
|
|
|
#endif
|
2021-09-20 11:47:51 +02:00
|
|
|
#endif // USE_MQTT
|