ESPHome 2026.1.0-dev
Loading...
Searching...
No Matches
openthread_info_text_sensor.cpp
Go to the documentation of this file.
1
3#ifdef USE_OPENTHREAD
4#include "esphome/core/log.h"
5
7
8static const char *const TAG = "openthread_info";
9
10void IPAddressOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "IPAddress", this); }
11void RoleOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Role", this); }
12void ChannelOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Channel", this); }
13void Rloc16OpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Rloc16", this); }
14void ExtAddrOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "ExtAddr", this); }
15void Eui64OpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Eui64", this); }
16void NetworkNameOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Network Name", this); }
17void NetworkKeyOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Network Key", this); }
18void PanIdOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "PAN ID", this); }
19void ExtPanIdOpenThreadInfo::dump_config() { LOG_TEXT_SENSOR("", "Extended PAN ID", this); }
20
21} // namespace esphome::openthread_info
22#endif