mirror of
https://github.com/esphome/esphome.git
synced 2025-10-30 06:33:51 +00:00
Add OpenTherm component (part 3: rest of the sensors) (#7676)
Co-authored-by: FreeBear <freebear@tuxcnc.org> Co-authored-by: FreeBear-nc <67865163+FreeBear-nc@users.noreply.github.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
74
esphome/components/opentherm/number/__init__.py
Normal file
74
esphome/components/opentherm/number/__init__.py
Normal file
@@ -0,0 +1,74 @@
|
||||
from typing import Any
|
||||
|
||||
import esphome.codegen as cg
|
||||
import esphome.config_validation as cv
|
||||
from esphome.components import number
|
||||
from esphome.const import (
|
||||
CONF_ID,
|
||||
CONF_UNIT_OF_MEASUREMENT,
|
||||
CONF_STEP,
|
||||
CONF_INITIAL_VALUE,
|
||||
CONF_RESTORE_VALUE,
|
||||
)
|
||||
from .. import const, schema, validate, input, generate
|
||||
|
||||
DEPENDENCIES = [const.OPENTHERM]
|
||||
COMPONENT_TYPE = const.NUMBER
|
||||
|
||||
OpenthermNumber = generate.opentherm_ns.class_(
|
||||
"OpenthermNumber", number.Number, cg.Component, input.OpenthermInput
|
||||
)
|
||||
|
||||
|
||||
async def new_openthermnumber(config: dict[str, Any]) -> cg.Pvariable:
|
||||
var = cg.new_Pvariable(config[CONF_ID])
|
||||
await cg.register_component(var, config)
|
||||
await number.register_number(
|
||||
var,
|
||||
config,
|
||||
min_value=config[input.CONF_min_value],
|
||||
max_value=config[input.CONF_max_value],
|
||||
step=config[input.CONF_step],
|
||||
)
|
||||
input.generate_setters(var, config)
|
||||
|
||||
if CONF_INITIAL_VALUE in config:
|
||||
cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE]))
|
||||
if CONF_RESTORE_VALUE in config:
|
||||
cg.add(var.set_restore_value(config[CONF_RESTORE_VALUE]))
|
||||
|
||||
return var
|
||||
|
||||
|
||||
def get_entity_validation_schema(entity: schema.InputSchema) -> cv.Schema:
|
||||
return (
|
||||
number.NUMBER_SCHEMA.extend(
|
||||
{
|
||||
cv.GenerateID(): cv.declare_id(OpenthermNumber),
|
||||
cv.Optional(
|
||||
CONF_UNIT_OF_MEASUREMENT, entity.unit_of_measurement
|
||||
): cv.string_strict,
|
||||
cv.Optional(CONF_STEP, entity.step): cv.float_,
|
||||
cv.Optional(CONF_INITIAL_VALUE): cv.float_,
|
||||
cv.Optional(CONF_RESTORE_VALUE): cv.boolean,
|
||||
}
|
||||
)
|
||||
.extend(input.input_schema(entity))
|
||||
.extend(cv.COMPONENT_SCHEMA)
|
||||
)
|
||||
|
||||
|
||||
CONFIG_SCHEMA = validate.create_component_schema(
|
||||
schema.INPUTS, get_entity_validation_schema
|
||||
)
|
||||
|
||||
|
||||
async def to_code(config: dict[str, Any]) -> None:
|
||||
keys = await generate.component_to_code(
|
||||
COMPONENT_TYPE,
|
||||
schema.INPUTS,
|
||||
OpenthermNumber,
|
||||
generate.create_only_conf(new_openthermnumber),
|
||||
config,
|
||||
)
|
||||
generate.define_readers(COMPONENT_TYPE, keys)
|
||||
40
esphome/components/opentherm/number/number.cpp
Normal file
40
esphome/components/opentherm/number/number.cpp
Normal file
@@ -0,0 +1,40 @@
|
||||
#include "number.h"
|
||||
|
||||
namespace esphome {
|
||||
namespace opentherm {
|
||||
|
||||
static const char *const TAG = "opentherm.number";
|
||||
|
||||
void OpenthermNumber::control(float value) {
|
||||
this->publish_state(value);
|
||||
|
||||
if (this->restore_value_)
|
||||
this->pref_.save(&value);
|
||||
}
|
||||
|
||||
void OpenthermNumber::setup() {
|
||||
float value;
|
||||
if (!this->restore_value_) {
|
||||
value = this->initial_value_;
|
||||
} else {
|
||||
this->pref_ = global_preferences->make_preference<float>(this->get_object_id_hash());
|
||||
if (!this->pref_.load(&value)) {
|
||||
if (!std::isnan(this->initial_value_)) {
|
||||
value = this->initial_value_;
|
||||
} else {
|
||||
value = this->traits.get_min_value();
|
||||
}
|
||||
}
|
||||
}
|
||||
this->publish_state(value);
|
||||
}
|
||||
|
||||
void OpenthermNumber::dump_config() {
|
||||
LOG_NUMBER("", "OpenTherm Number", this);
|
||||
ESP_LOGCONFIG(TAG, " Restore value: %d", this->restore_value_);
|
||||
ESP_LOGCONFIG(TAG, " Initial value: %.2f", this->initial_value_);
|
||||
ESP_LOGCONFIG(TAG, " Current value: %.2f", this->state);
|
||||
}
|
||||
|
||||
} // namespace opentherm
|
||||
} // namespace esphome
|
||||
31
esphome/components/opentherm/number/number.h
Normal file
31
esphome/components/opentherm/number/number.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#pragma once
|
||||
|
||||
#include "esphome/components/number/number.h"
|
||||
#include "esphome/core/preferences.h"
|
||||
#include "esphome/core/log.h"
|
||||
#include "esphome/components/opentherm/input.h"
|
||||
|
||||
namespace esphome {
|
||||
namespace opentherm {
|
||||
|
||||
// Just a simple number, which stores the number
|
||||
class OpenthermNumber : public number::Number, public Component, public OpenthermInput {
|
||||
protected:
|
||||
void control(float value) override;
|
||||
void setup() override;
|
||||
void dump_config() override;
|
||||
|
||||
float initial_value_{NAN};
|
||||
bool restore_value_{false};
|
||||
|
||||
ESPPreferenceObject pref_;
|
||||
|
||||
public:
|
||||
void set_min_value(float min_value) override { this->traits.set_min_value(min_value); }
|
||||
void set_max_value(float max_value) override { this->traits.set_max_value(max_value); }
|
||||
void set_initial_value(float initial_value) { initial_value_ = initial_value; }
|
||||
void set_restore_value(bool restore_value) { this->restore_value_ = restore_value; }
|
||||
};
|
||||
|
||||
} // namespace opentherm
|
||||
} // namespace esphome
|
||||
Reference in New Issue
Block a user