get rid of strings
This commit is contained in:
parent
29cc8a43aa
commit
3b37318621
|
@ -12,6 +12,8 @@
|
||||||
************************************/
|
************************************/
|
||||||
|
|
||||||
#include "ratgdo.h"
|
#include "ratgdo.h"
|
||||||
|
#include "ratgdo_child.h"
|
||||||
|
|
||||||
#include "esphome/core/log.h"
|
#include "esphome/core/log.h"
|
||||||
|
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
|
|
|
@ -22,6 +22,7 @@ extern "C" {
|
||||||
#include "secplus.h"
|
#include "secplus.h"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include "ratgdo_child.h"
|
||||||
#define CODE_LENGTH 19
|
#define CODE_LENGTH 19
|
||||||
|
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
|
|
|
@ -5,19 +5,18 @@
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace ratgdo {
|
namespace ratgdo {
|
||||||
|
|
||||||
// Forward declare RATGDOComponent
|
// Forward declare RATGDOComponent
|
||||||
class RATGDOComponent;
|
class RATGDOComponent;
|
||||||
|
|
||||||
class RATGDOClient : public Parented<RATGDOComponent> {
|
class RATGDOClient : public Parented<RATGDOComponent> {
|
||||||
public:
|
public:
|
||||||
virtual void on_status() = 0;
|
virtual void on_status() = 0;
|
||||||
virtual void on_ratgdo_state(bool is_ready) = 0;
|
virtual void on_ratgdo_state(bool is_ready) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
friend RATGDOComponent;
|
friend RATGDOComponent;
|
||||||
virtual std::string describe() = 0;
|
virtual std::string describe() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ratgdo
|
|
||||||
} // namespace esphome
|
|
||||||
|
|
||||||
|
} // namespace ratgdo
|
||||||
|
} // namespace esphome
|
||||||
|
|
Loading…
Reference in New Issue