mirror of
https://github.com/esphome/esphome.git
synced 2024-11-25 16:38:16 +01:00
Make dout the default flash mode (#420)
This commit is contained in:
parent
a15b647d13
commit
7fecec128f
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ CONFIG_SCHEMA = vol.Schema({
|
||||||
cv.string_strict: vol.Any([cv.string], cv.string),
|
cv.string_strict: vol.Any([cv.string], cv.string),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
vol.Optional(CONF_BOARD_FLASH_MODE): cv.one_of(*BUILD_FLASH_MODES, lower=True),
|
vol.Optional(CONF_BOARD_FLASH_MODE, default='dout'): cv.one_of(*BUILD_FLASH_MODES, lower=True),
|
||||||
vol.Optional(CONF_ON_BOOT): automation.validate_automation({
|
vol.Optional(CONF_ON_BOOT): automation.validate_automation({
|
||||||
cv.GenerateID(CONF_TRIGGER_ID): cv.declare_variable_id(StartupTrigger),
|
cv.GenerateID(CONF_TRIGGER_ID): cv.declare_variable_id(StartupTrigger),
|
||||||
vol.Optional(CONF_PRIORITY): cv.float_,
|
vol.Optional(CONF_PRIORITY): cv.float_,
|
||||||
|
|
Loading…
Reference in a new issue