ESPHome 2026.6.0-dev
Loading...
Searching...
No Matches
atm90e32_number.h
Go to the documentation of this file.
1#pragma once
2
6
7namespace esphome::atm90e32 {
8
9class ATM90E32Number : public number::Number, public Parented<ATM90E32Component> {
10 public:
11 void control(float value) override { this->publish_state(value); }
12};
13
14} // namespace esphome::atm90e32
Helper class to easily give an object a parent of type T.
Definition helpers.h:1861
void control(float value) override
Base-class for all numbers.
Definition number.h:29
void publish_state(float state)
Definition number.cpp:22