mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 16:08:10 +01:00
Log esphomelib version and compilation time on boot (#159)
This commit is contained in:
parent
6c1dc0f2b3
commit
37360bb797
1 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,7 @@ from esphomeyaml.const import CONF_ARDUINO_VERSION, CONF_BOARD, CONF_BOARD_FLASH
|
||||||
ARDUINO_VERSION_ESP32_DEV
|
ARDUINO_VERSION_ESP32_DEV
|
||||||
from esphomeyaml.core import ESPHomeYAMLError
|
from esphomeyaml.core import ESPHomeYAMLError
|
||||||
from esphomeyaml.helpers import App, NoArg, Pvariable, add, const_char_p, esphomelib_ns, \
|
from esphomeyaml.helpers import App, NoArg, Pvariable, add, const_char_p, esphomelib_ns, \
|
||||||
relative_path
|
relative_path, RawExpression
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -252,3 +252,5 @@ def to_code(config):
|
||||||
automation.build_automation(trigger, NoArg, conf)
|
automation.build_automation(trigger, NoArg, conf)
|
||||||
|
|
||||||
update_esphomelib_repo(config)
|
update_esphomelib_repo(config)
|
||||||
|
|
||||||
|
add(App.set_compilation_datetime(RawExpression('__DATE__ ", " __TIME__')))
|
||||||
|
|
Loading…
Reference in a new issue