mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Add option to suffix name with mac address (#1615)
* Add option to suffix name with mac address * Rename and add to test file
This commit is contained in:
parent
7708b81ef5
commit
faf577a9dd
3 changed files with 15 additions and 3 deletions
|
@ -37,8 +37,12 @@ namespace esphome {
|
|||
|
||||
class Application {
|
||||
public:
|
||||
void pre_setup(const std::string &name, const char *compilation_time) {
|
||||
this->name_ = name;
|
||||
void pre_setup(const std::string &name, const char *compilation_time, bool name_add_mac_suffix) {
|
||||
if (name_add_mac_suffix) {
|
||||
this->name_ = name + "_" + get_mac_address().substr(6);
|
||||
} else {
|
||||
this->name_ = name;
|
||||
}
|
||||
this->compilation_time_ = compilation_time;
|
||||
global_preferences.begin();
|
||||
}
|
||||
|
|
|
@ -45,6 +45,8 @@ LoopTrigger = cg.esphome_ns.class_(
|
|||
|
||||
VERSION_REGEX = re.compile(r"^[0-9]+\.[0-9]+\.[0-9]+(?:[ab]\d+)?$")
|
||||
|
||||
CONF_NAME_ADD_MAC_SUFFIX = "name_add_mac_suffix"
|
||||
|
||||
|
||||
def validate_board(value):
|
||||
if CORE.is_esp8266:
|
||||
|
@ -173,6 +175,7 @@ CONFIG_SCHEMA = cv.Schema(
|
|||
),
|
||||
cv.Optional(CONF_INCLUDES, default=[]): cv.ensure_list(valid_include),
|
||||
cv.Optional(CONF_LIBRARIES, default=[]): cv.ensure_list(cv.string_strict),
|
||||
cv.Optional(CONF_NAME_ADD_MAC_SUFFIX, default=False): cv.boolean,
|
||||
cv.Optional("esphome_core_version"): cv.invalid(
|
||||
"The esphome_core_version option has been "
|
||||
"removed in 1.13 - the esphome core source "
|
||||
|
@ -289,7 +292,11 @@ def _add_automations(config):
|
|||
def to_code(config):
|
||||
cg.add_global(cg.global_ns.namespace("esphome").using)
|
||||
cg.add(
|
||||
cg.App.pre_setup(config[CONF_NAME], cg.RawExpression('__DATE__ ", " __TIME__'))
|
||||
cg.App.pre_setup(
|
||||
config[CONF_NAME],
|
||||
cg.RawExpression('__DATE__ ", " __TIME__'),
|
||||
config[CONF_NAME_ADD_MAC_SUFFIX],
|
||||
)
|
||||
)
|
||||
|
||||
CORE.add_job(_add_automations, config)
|
||||
|
|
|
@ -6,6 +6,7 @@ substitutions:
|
|||
|
||||
esphome:
|
||||
name: test1
|
||||
name_add_mac_suffix: true
|
||||
platform: ESP32
|
||||
board: nodemcu-32s
|
||||
on_boot:
|
||||
|
|
Loading…
Reference in a new issue