Results 25 comments of Tim

Thanks for that. Do we also need to delete copy assignment operators wherever we delete copy constructors so that the default copy assignment operator is not used for an assignment...

The "Window" menu already is a top level menu that switches between windows created with File/New. A problem with it is that it names all of the windows on its...

> Where do I find the integration mentioned in Method 1/2 Integration in the read me doc. I can't find it in Integrations, Add-Ons, HACS... Thanks I found that after...

> Hi, maybe I miss something, but how to quick switch of server. You can add multiple servers, but to switch it is like, go to settings, select servers, select...

@davidmarli, I haven't tried it but looking at the WiFiManager code, the constructor takes an optional parameter of type Print&. ``` // constructors WiFiManager::WiFiManager(Print& consolePort):_debugPort(consolePort){ WiFiManagerInit(); } WiFiManager::WiFiManager() { WiFiManagerInit();...

> > Its probably memory, the html is output as a string on the stack, If you are using alot of params this can be optimized by using chunked outputting...

The response from Victron was: "This would indicate the model is now no longer supported for further Firmware updates. The V2 model would be the only option for instant read...

Hi @IvanSkorocodov, WiFiManager does not explicitly store or retrieve the WiFi SSID and password. Rather, it relies on the native esp8266 and esp32 support for doing that. Custom parameters are...

The code has at least _five_ problems: 1. It defines _two_ instances of the class WiFiManager in lines 6 & 7. This is almost certainly _not_ what you want. 2....

Hi @Sul-M, information that would help get help includes following: > Hi - managed to install WifiManager and connect AP without issue. I can also connect to Wifi but when...