Allow longer wifi ssid and password

This commit is contained in:
fvanroie 2021-05-03 02:22:38 +02:00
parent 243a9aac31
commit c1a8d04da8

View File

@ -52,8 +52,8 @@ static void kb_event_cb(lv_obj_t* event_kb, lv_event_t event)
{
if(event == LV_EVENT_APPLY) {
StaticJsonDocument<256> settings;
char ssid[32] = "";
char pass[32] = "";
char ssid[64] = "";
char pass[64] = "";
lv_obj_t* obj;
obj = hasp_find_obj_from_parent_id(oobepage[1], (uint8_t)10);