From 2d83c335bc8ba2f70ce78ac7306f9db7b865cf8d Mon Sep 17 00:00:00 2001 From: AleXSR700 <57034871+AleXSR700@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:51:44 +0100 Subject: [PATCH] Update xdrv_79_esp32_ble.ino (#17990) Increase maximum length of Alias as the short MaxAlias is not in line with name length and limits the user (e.g. if sensors have room names as appendix like "_master_bathroom"). --- tasmota/tasmota_xdrv_driver/xdrv_79_esp32_ble.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_79_esp32_ble.ino b/tasmota/tasmota_xdrv_driver/xdrv_79_esp32_ble.ino index fabcf916e..6f9089e1f 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_79_esp32_ble.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_79_esp32_ble.ino @@ -204,7 +204,7 @@ namespace BLE_ESP32 { ///////////////////////////////////////////////////// #define BLE_ESP32_MAXNAMELEN 32 -#define BLE_ESP32_MAXALIASLEN 20 +#define BLE_ESP32_MAXALIASLEN 32 #define MAX_BLE_DATA_LEN 100