mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-21 13:33:27 +02:00
16 lines
274 B
C++
16 lines
274 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/time/real_time_clock.h"
|
|
|
|
namespace esphome {
|
|
namespace host {
|
|
|
|
class HostTime : public time::RealTimeClock {
|
|
public:
|
|
void update() override {}
|
|
};
|
|
|
|
} // namespace host
|
|
} // namespace esphome
|