mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
623570a117
Co-authored-by: Maurice Makaay <mmakaay1@xs4all.net> Co-authored-by: Guillermo Ruffino <glm.net@gmail.com>
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/defines.h"
|
|
#ifdef USE_OTA_STATE_CALLBACK
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/automation.h"
|
|
#include "esphome/components/ota/ota_component.h"
|
|
|
|
namespace esphome {
|
|
namespace ota {
|
|
|
|
class OTAStateChangeTrigger : public Trigger<OTAState> {
|
|
public:
|
|
explicit OTAStateChangeTrigger(OTAComponent *parent) {
|
|
parent->add_on_state_callback([this, parent](OTAState state, float progress, uint8_t error) {
|
|
if (!parent->is_failed()) {
|
|
return trigger(state);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
class OTAStartTrigger : public Trigger<> {
|
|
public:
|
|
explicit OTAStartTrigger(OTAComponent *parent) {
|
|
parent->add_on_state_callback([this, parent](OTAState state, float progress, uint8_t error) {
|
|
if (state == OTA_STARTED && !parent->is_failed()) {
|
|
trigger();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
class OTAProgressTrigger : public Trigger<float> {
|
|
public:
|
|
explicit OTAProgressTrigger(OTAComponent *parent) {
|
|
parent->add_on_state_callback([this, parent](OTAState state, float progress, uint8_t error) {
|
|
if (state == OTA_IN_PROGRESS && !parent->is_failed()) {
|
|
trigger(progress);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
class OTAEndTrigger : public Trigger<> {
|
|
public:
|
|
explicit OTAEndTrigger(OTAComponent *parent) {
|
|
parent->add_on_state_callback([this, parent](OTAState state, float progress, uint8_t error) {
|
|
if (state == OTA_COMPLETED && !parent->is_failed()) {
|
|
trigger();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
class OTAErrorTrigger : public Trigger<int> {
|
|
public:
|
|
explicit OTAErrorTrigger(OTAComponent *parent) {
|
|
parent->add_on_state_callback([this, parent](OTAState state, float progress, uint8_t error) {
|
|
if (state == OTA_ERROR && !parent->is_failed()) {
|
|
trigger(error);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
} // namespace ota
|
|
} // namespace esphome
|
|
|
|
#endif // USE_OTA_STATE_CALLBACK
|