WiFi AP apply manual ip settings (#836)

This commit is contained in:
Otto Winter
2019-11-05 22:11:15 +01:00
parent 4f3a74d08a
commit 387c75793b
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -179,7 +179,8 @@ def to_code(config):
if CONF_AP in config:
conf = config[CONF_AP]
cg.add(var.set_ap(wifi_network(conf, config.get(CONF_MANUAL_IP))))
ip_config = conf.get(CONF_MANUAL_IP, config.get(CONF_MANUAL_IP))
cg.add(var.set_ap(wifi_network(conf, ip_config)))
cg.add(var.set_ap_timeout(conf[CONF_AP_TIMEOUT]))
cg.add(var.set_reboot_timeout(config[CONF_REBOOT_TIMEOUT]))