dontsovcmc / waterius

Передача показаний воды по Wi-Fi. Watermeter Wi-Fi transmitter.
https://waterius.ru
GNU Lesser General Public License v3.0
560 stars 108 forks source link

При кол-ве Wi-Fi больше 20 страница не грузится #106

Closed dontsovcmc closed 4 years ago

dontsovcmc commented 4 years ago

При кол-ве сетей Wi-Fi в списке больше 24 страница не умещается в 12000байт и не загружается полностью

Быстрое решение: фильтровать сети по мощности сигнала. скажем 25% и ниже обрезать Долгое: сделать загрузку сетей динамической

dontsovcmc commented 4 years ago

@tablatronix is it possible to add /ssids handler and return networks in /wifi page asyncronously? I got memory limit with 24 ssid's and want "unlimited" decition.

  1. /wifi page onload function call "/ssids"
  2. esp call WiFi_scanNetworks(server->hasArg(F("refresh")),false); //wifiscan, force if arg refresh and return html code
  3. JS code change network 'div' html code to returned by handler.
tablatronix commented 4 years ago

Is this the same page string running out of memory

dontsovcmc commented 4 years ago

Is this the same page string running out of memory

Yeap! I reserved(12000), page larger. That's why I want to load networks async. Is there is any problems with calling WiFi_scanNetworks in handler?

dontsovcmc commented 4 years ago

It works =)