mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02:00
3d9301a0f7
* Rename * Update * Add migration * Fix * Fix dashboard * Change test * Fixes * Code cleanup * Fix import order * Update * Automate docker builds * Shellcheck
25 lines
755 B
Python
25 lines
755 B
Python
from esphome.components import time as time_
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID
|
|
from esphome.cpp_generator import Pvariable
|
|
from esphome.cpp_helpers import setup_component
|
|
from esphome.cpp_types import App
|
|
|
|
DEPENDENCIES = ['api']
|
|
|
|
HomeAssistantTime = time_.time_ns.class_('HomeAssistantTime', time_.RealTimeClockComponent)
|
|
|
|
PLATFORM_SCHEMA = time_.TIME_PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(HomeAssistantTime),
|
|
}).extend(cv.COMPONENT_SCHEMA.schema)
|
|
|
|
|
|
def to_code(config):
|
|
rhs = App.make_homeassistant_time_component()
|
|
ha_time = Pvariable(config[CONF_ID], rhs)
|
|
time_.setup_time(ha_time, config)
|
|
setup_component(ha_time, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_HOMEASSISTANT_TIME'
|