esphome/esphomeyaml/components/ota.py

58 lines
1.5 KiB
Python
Raw Normal View History

2018-04-07 01:23:03 +02:00
import logging
import voluptuous as vol
import esphomeyaml.config_validation as cv
2019-01-06 19:38:23 +01:00
from esphomeyaml.const import CONF_ID, CONF_OTA, CONF_PASSWORD, CONF_PORT, CONF_SAFE_MODE
from esphomeyaml.core import CORE
from esphomeyaml.cpp_generator import Pvariable, add
from esphomeyaml.cpp_types import App, Component, esphomelib_ns
2018-04-07 01:23:03 +02:00
_LOGGER = logging.getLogger(__name__)
OTAComponent = esphomelib_ns.class_('OTAComponent', Component)
2018-06-02 22:22:20 +02:00
CONFIG_SCHEMA = vol.Schema({
2018-06-02 22:22:20 +02:00
cv.GenerateID(): cv.declare_variable_id(OTAComponent),
2018-04-07 01:23:03 +02:00
vol.Optional(CONF_SAFE_MODE, default=True): cv.boolean,
vol.Optional(CONF_PORT): cv.port,
vol.Optional(CONF_PASSWORD): cv.string,
})
def to_code(config):
rhs = App.init_ota()
2018-06-02 22:22:20 +02:00
ota = Pvariable(config[CONF_ID], rhs)
2018-04-07 01:23:03 +02:00
if CONF_PASSWORD in config:
add(ota.set_auth_password(config[CONF_PASSWORD]))
2018-06-06 11:12:14 +02:00
if CONF_PORT in config:
add(ota.set_port(config[CONF_PORT]))
2018-04-07 01:23:03 +02:00
if config[CONF_SAFE_MODE]:
add(ota.start_safe_mode())
def get_port(config):
if CONF_PORT in config[CONF_OTA]:
return config[CONF_OTA][CONF_PORT]
2019-01-06 19:38:23 +01:00
if CORE.is_esp32:
2018-04-07 01:23:03 +02:00
return 3232
2019-01-06 19:38:23 +01:00
if CORE.is_esp8266:
2018-04-07 01:23:03 +02:00
return 8266
2019-01-06 19:38:23 +01:00
raise NotImplementedError
2018-04-07 01:23:03 +02:00
def get_auth(config):
return config[CONF_OTA].get(CONF_PASSWORD, '')
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_OTA'
REQUIRED_BUILD_FLAGS = '-DUSE_NEW_OTA'
2018-05-14 11:50:56 +02:00
def lib_deps(config):
2019-01-06 19:38:23 +01:00
if CORE.is_esp32:
return ['Update', 'ESPmDNS']
if CORE.is_esp8266:
return ['Hash', 'ESP8266mDNS']
raise NotImplementedError