The Wi-Fi power save mode is back to "NONE" as default
This commit is contained in:
@@ -15,3 +15,7 @@ esp32:
|
|||||||
type: esp-idf
|
type: esp-idf
|
||||||
|
|
||||||
bluetooth_proxy:
|
bluetooth_proxy:
|
||||||
|
|
||||||
|
# Set Wi-Fi power save mode to "LIGHT" as required for Bluetooth on ESP32
|
||||||
|
wifi:
|
||||||
|
power_save_mode: LIGHT
|
||||||
|
|||||||
@@ -17,3 +17,7 @@ esp32:
|
|||||||
platform_version: 6.3.2
|
platform_version: 6.3.2
|
||||||
|
|
||||||
bluetooth_proxy:
|
bluetooth_proxy:
|
||||||
|
|
||||||
|
# Set Wi-Fi power save mode to "LIGHT" as required for Bluetooth on ESP32
|
||||||
|
wifi:
|
||||||
|
power_save_mode: LIGHT
|
||||||
|
|||||||
@@ -271,3 +271,5 @@ wifi:
|
|||||||
- ssid: !secret wifi_ssid_backup
|
- ssid: !secret wifi_ssid_backup
|
||||||
password: !secret wifi_password_backup
|
password: !secret wifi_password_backup
|
||||||
priority: 0
|
priority: 0
|
||||||
|
# Set Wi-Fi power save mode to "LIGHT" as required for Bluetooth on ESP32
|
||||||
|
power_save_mode: LIGHT
|
||||||
|
|||||||
@@ -35,6 +35,17 @@ Updates may come with changes on the blueprint inputs and we highly recommend yo
|
|||||||
|
|
||||||
1. Service `esphome.xxxxx_set_component_color` parameter `background` is deprecated.
|
1. Service `esphome.xxxxx_set_component_color` parameter `background` is deprecated.
|
||||||
2. Due to the additional custom buttons, the other buttons on home page changed their positions.
|
2. Due to the additional custom buttons, the other buttons on home page changed their positions.
|
||||||
|
3. The Wi-Fi power save mode is back to "NONE" as default<br>
|
||||||
|
This was the default until v4.0, but we changed on v4.1 to support Bluetooth components, however as this is not used by the majority of users, we are reverting back to the original setting. You can (and should if you want use Bluetooth) enforce other mode as a customization, like in the example bellow:
|
||||||
|
```yaml
|
||||||
|
##### My customization - Start #####
|
||||||
|
# Enable Bluetooth proxy
|
||||||
|
bluetooth_proxy:
|
||||||
|
# Set Wi-Fi power save mode to "LIGHT" as required for Bluetooth on ESP32
|
||||||
|
wifi:
|
||||||
|
power_save_mode: LIGHT
|
||||||
|
##### My customization - End #####
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Overview of noteworthy changes
|
## Overview of noteworthy changes
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ esp32:
|
|||||||
|
|
||||||
##### WIFI SETUP #####
|
##### WIFI SETUP #####
|
||||||
wifi:
|
wifi:
|
||||||
|
power_save_mode: NONE
|
||||||
networks:
|
networks:
|
||||||
- id: wifi_default
|
- id: wifi_default
|
||||||
ssid: ${wifi_ssid}
|
ssid: ${wifi_ssid}
|
||||||
|
|||||||
Reference in New Issue
Block a user