1
0
mirror of https://github.com/esphome/esphome.git synced 2025-07-10 17:13:10 +01:00
Files
esphome/esphome/components/debug/debug_host.cpp

19 lines
396 B
C++

#include "debug_component.h"
#ifdef USE_HOST
#include <climits>
namespace esphome {
namespace debug {
std::string DebugComponent::get_reset_reason_() { return ""; }
uint32_t DebugComponent::get_free_heap_() { return INT_MAX; }
void DebugComponent::get_device_info_(std::string &device_info) {}
void DebugComponent::update_platform_() {}
} // namespace debug
} // namespace esphome
#endif