ESPHome 2026.10.0-dev
Loading...
Searching...
No Matches
version_text_sensor.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace esphome::version {
7
9 public:
10 void set_hide_hash(bool hide_hash) { this->hide_hash_ = hide_hash; }
11 void set_hide_timestamp(bool hide_timestamp) { this->hide_timestamp_ = hide_timestamp; }
12 void setup() override;
13 void dump_config() override;
14
15 protected:
16 bool hide_hash_{false};
17 bool hide_timestamp_{false};
18};
19
20} // namespace esphome::version
void set_hide_timestamp(bool hide_timestamp)