ESPHome 2026.3.0
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:
11 void dump_config() override;
12 void control(float value) override;
13 void process_value_from_stove(int value_from_stove) override;
14
15 void set_use_step_scaling(bool v) { this->use_step_scaling_ = v; }
16
17 protected:
18 bool use_step_scaling_ = false;
19};
20
21} // namespace esphome::micronova
uint8_t m
Definition bl0906.h:1
void control(float value) override
void process_value_from_stove(int value_from_stove) override
Base-class for all numbers.
Definition number.h:29