Log esphomelib version and compilation time on boot (#159)

This commit is contained in:
Otto Winter 2018-10-12 09:48:55 +02:00 committed by GitHub
parent 6c1dc0f2b3
commit 37360bb797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ from esphomeyaml.const import CONF_ARDUINO_VERSION, CONF_BOARD, CONF_BOARD_FLASH
ARDUINO_VERSION_ESP32_DEV
from esphomeyaml.core import ESPHomeYAMLError
from esphomeyaml.helpers import App, NoArg, Pvariable, add, const_char_p, esphomelib_ns, \
relative_path
relative_path, RawExpression
_LOGGER = logging.getLogger(__name__)
@ -252,3 +252,5 @@ def to_code(config):
automation.build_automation(trigger, NoArg, conf)
update_esphomelib_repo(config)
add(App.set_compilation_datetime(RawExpression('__DATE__ ", " __TIME__')))