mirror of
https://github.com/esphome/esphome.git
synced 2024-11-09 09:51:20 +01:00
da2821ab36
* Esphomeapi * Updates * Remove MQTT from wizard * Add protobuf to requirements * Fix * API Client updates * Dump config on API connect * Old WiFi config migration * Home Assistant state import * Lint
26 lines
780 B
Python
26 lines
780 B
Python
from esphomeyaml.components import time as time_
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_ID
|
|
from esphomeyaml.cpp_generator import Pvariable
|
|
from esphomeyaml.cpp_helpers import setup_component
|
|
from esphomeyaml.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'
|