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").
This commit is contained in:
AleXSR700 2023-02-20 10:51:44 +01:00 committed by GitHub
parent c1dec03adb
commit 2d83c335bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ namespace BLE_ESP32 {
///////////////////////////////////////////////////// /////////////////////////////////////////////////////
#define BLE_ESP32_MAXNAMELEN 32 #define BLE_ESP32_MAXNAMELEN 32
#define BLE_ESP32_MAXALIASLEN 20 #define BLE_ESP32_MAXALIASLEN 32
#define MAX_BLE_DATA_LEN 100 #define MAX_BLE_DATA_LEN 100