Ryan Downing

Results 8 comments of Ryan Downing

For 1 I would suggest you take a look at the non-blocking option. This way you can continue to run your main program while the wifi manager is running, and...

Take a look in the cpp file, there's an optional define for WIFI_HTM_PROGMEM . If you define that, it stores the whole html page in progmem and serves it from...

In your case you would want to add a link to the wifi.html in your main page like so: https://github.com/r-downing/PersWiFiManager/blob/master/examples/basic_rest_api/data/index.htm#L24 On Wed, May 27, 2020, 10:52 AM Arturo wrote: >...

Interesting idea, thanks! Should be simple enough to implement. I will think about it for a little bit and get back to you

> @r-downing thank you for your contribution! Could you please provide a simple example demonstrating the fixed and unfixed state? I don't currently have access to the code or hardware...

I'm happy to implement this - would the consensus be default or opt-in? I was also looking for similar checks for plain `Exception` similar to pylint's `broad-exception-raised` and `broad-exception-caught` -...

```cpp public string Example() {} ``` is this even valid C++? This works: ```cpp class Test { public: string Example() {} }; ``` produces ```cpp class Test { public: /**...

What about a warning for the opposite case? Forgot to use global when you probably should. Or in other words, local var ".." shadows global. Would this be useful? ```python...