mirror of
https://github.com/esphome/esphome.git
synced 2025-03-29 03:39:01 +01:00
18 lines
342 B
C++
18 lines
342 B
C++
#include "loki.h"
|
|
#ifdef USE_NETWORK
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace loki {
|
|
|
|
static const char *TAG = "loki.component";
|
|
|
|
void LokiComponent::setup() {}
|
|
|
|
void LokiComponent::loop() {}
|
|
|
|
void LokiComponent::dump_config() { ESP_LOGCONFIG(TAG, "Loki component"); }
|
|
|
|
} // namespace loki
|
|
} // namespace esphome
|
|
#endif
|