ESPHome 2026.8.0b4
Loading...
Searching...
No Matches
openthread_info_sensor.cpp
Go to the documentation of this file.
2#if defined(USE_OPENTHREAD) && defined(USE_SENSOR)
3#include "esphome/core/log.h"
4
6
7static const char *const TAG = "openthread_info";
8
9void ParentAverageRssiOpenThreadInfo::dump_config() { LOG_SENSOR("", "Parent Average RSSI", this); }
10void ParentLastRssiOpenThreadInfo::dump_config() { LOG_SENSOR("", "Parent Last RSSI", this); }
11void ParentLinkQualityInOpenThreadInfo::dump_config() { LOG_SENSOR("", "Parent Link Quality In", this); }
12void ParentLinkQualityOutOpenThreadInfo::dump_config() { LOG_SENSOR("", "Parent Link Quality Out", this); }
13void TxTotalOpenThreadInfo::dump_config() { LOG_SENSOR("", "TX Total", this); }
14void TxRetriesOpenThreadInfo::dump_config() { LOG_SENSOR("", "TX Retries", this); }
15void TxErrCcaOpenThreadInfo::dump_config() { LOG_SENSOR("", "TX CCA Errors", this); }
16void TxErrAbortOpenThreadInfo::dump_config() { LOG_SENSOR("", "TX Abort Errors", this); }
17void RxTotalOpenThreadInfo::dump_config() { LOG_SENSOR("", "RX Total", this); }
18void RxErrFcsOpenThreadInfo::dump_config() { LOG_SENSOR("", "RX FCS Errors", this); }
19void AttachAttemptsOpenThreadInfo::dump_config() { LOG_SENSOR("", "Attach Attempts", this); }
20void ParentChangesOpenThreadInfo::dump_config() { LOG_SENSOR("", "Parent Changes", this); }
21void PartitionIdChangesOpenThreadInfo::dump_config() { LOG_SENSOR("", "Partition ID Changes", this); }
22
23} // namespace esphome::openthread_info
24#endif