mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 04:28:19 +01:00
9fed7cab5f
* Fix some Tuya devices not handling commands sent without delay * Also do not report WiFi status if MCU does not support it * Support Tuya MCU 0x1c command (obtain local time) * Use #ifdef USE_TIME to handle optional dependency on RTC * Rename Tuya clock config variable to time to be consistent with the codebase * Add tuya time configuration to test4
25 lines
829 B
Python
25 lines
829 B
Python
from esphome.components import time
|
|
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import uart
|
|
from esphome.const import CONF_ID, CONF_TIME_ID
|
|
|
|
DEPENDENCIES = ['uart']
|
|
|
|
tuya_ns = cg.esphome_ns.namespace('tuya')
|
|
Tuya = tuya_ns.class_('Tuya', cg.Component, uart.UARTDevice)
|
|
|
|
CONF_TUYA_ID = 'tuya_id'
|
|
CONFIG_SCHEMA = cv.Schema({
|
|
cv.GenerateID(): cv.declare_id(Tuya),
|
|
cv.Optional(CONF_TIME_ID): cv.use_id(time.RealTimeClock),
|
|
}).extend(cv.COMPONENT_SCHEMA).extend(uart.UART_DEVICE_SCHEMA)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|
|
yield uart.register_uart_device(var, config)
|
|
if CONF_TIME_ID in config:
|
|
time_ = yield cg.get_variable(config[CONF_TIME_ID])
|
|
cg.add(var.set_time_id(time_))
|