initial commit
This commit is contained in:
22
esphome/components/ehmtx/select/ehmtx_select.h
Normal file
22
esphome/components/ehmtx/select/ehmtx_select.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "esphome.h"
|
||||
|
||||
namespace esphome {
|
||||
|
||||
class EHMTX;
|
||||
|
||||
class EhmtxSelect : public select::Select, public PollingComponent {
|
||||
public:
|
||||
|
||||
void setup() override;
|
||||
void update() override;
|
||||
void dump_config() override;
|
||||
float get_setup_priority() const override { return setup_priority::LATE; }
|
||||
EHMTX *parent;
|
||||
|
||||
protected:
|
||||
void control(const std::string &value) override;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user