mirror of
https://github.com/esphome/esphome.git
synced 2025-03-24 19:48:17 +00:00
34 lines
940 B
C++
34 lines
940 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/tuya/tuya.h"
|
|
#include "esphome/components/number/number.h"
|
|
#include "esphome/core/optional.h"
|
|
|
|
namespace esphome {
|
|
namespace tuya {
|
|
|
|
class TuyaNumber : public number::Number, public Component {
|
|
public:
|
|
void setup() override;
|
|
void dump_config() override;
|
|
void set_number_id(uint8_t number_id) { this->number_id_ = number_id; }
|
|
void set_write_multiply(float factor) { multiply_by_ = factor; }
|
|
void set_datapoint_type(TuyaDatapointType type) { type_ = type; }
|
|
void set_datapoint_initial_value(float value) { this->initial_value_ = value; }
|
|
|
|
void set_tuya_parent(Tuya *parent) { this->parent_ = parent; }
|
|
|
|
protected:
|
|
void control(float value) override;
|
|
|
|
Tuya *parent_;
|
|
uint8_t number_id_{0};
|
|
float multiply_by_{1.0};
|
|
optional<TuyaDatapointType> type_{};
|
|
optional<float> initial_value_{};
|
|
};
|
|
|
|
} // namespace tuya
|
|
} // namespace esphome
|