ESPHome 2025.12.3
Loading...
Searching...
No Matches
micronova_number.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace esphome::micronova {
7
9 public:
12 void dump_config() override {
13 LOG_NUMBER("", "Micronova number", this);
14 this->dump_base_config();
15 }
16 void control(float value) override;
17 void request_value_from_stove() override {
19 }
20 void process_value_from_stove(int value_from_stove) override;
21
22 void set_use_step_scaling(bool v) { this->use_step_scaling_ = v; }
23
24 protected:
25 bool use_step_scaling_ = false;
26};
27
28} // namespace esphome::micronova
uint8_t m
Definition bl0906.h:1
void request_address(uint8_t location, uint8_t address, MicroNovaListener *listener)
Definition micronova.cpp:73
void control(float value) override
void process_value_from_stove(int value_from_stove) override
Base-class for all numbers.
Definition number.h:29