Wonderful video, thanks brian, raw string literal.. learned something today! Noice. Yay web flash! I have been looking into this also as it works wonders for a few libs I use like tasmota, OMG etc
Thank you Brian. The concept of a web front end to control a micro controller isn't new. However, your video gives it new life. This is a very useful approach for limited hardware or offline operation.
Thanks a lot for this!!! I wanted to use wifimanager some time ago, but exactly as you described - got so lost in too many options that I gave up. This helps a lot.
Nice! Tablatronix has done some great work maintaining and adding to the WiFimanager project - but I do miss the days of where it was much simpler to implement and use ;)
Nicely done, and some really useful and detailed information. Oh, and I didn’t actually notice any focus issues, just your reminder that their apparently were some. 😎
Yeah it was not bad enough to not use the footage, but just bad enough that it annoyed me the entire time I was editing it , that lovely in focus lcsc box with a slightly blurry me 😅
Nice video for a super useful library! It needs some work but you might find our YoYoWiFiManager interesting - it has a couple of interesting tricks, notably setting WiFi credentials for multiple devices through one web interface - I used it in my ThreeWiFiMeters project (all of these are on github)
Yes, regardless of how you connect to the wifi with the esp (wifimanager or not) the ssid and password are written to flash memory and can be read back github.com/witnessmenow/ESP-Web-Tools-Tutorial/blob/main/CodeExamples/BlinkWhenConnected/BlinkWhenConnected.ino#L44 There maybe some ways to secure against this, but I don't know them
I'm working on a non Arduino based version, as I’m not an Arduino fan boy. Plus I like to know what’s going on behind any statement that has a "begin" in it. Way too easy to use the library and get it running in 5min, FreeRTOS is my hair shirt that I have to endure. :-) Still a nice and easy video to follow
Hi Brian, I’m quite new to using the ESP boards and I’ve managed to get my project up and running but I’m trying to implement on demand portal functionality. Doing so is causing issues and I cannot get it to work with Autoconnect. I’ve read that you cannot use both, yet you mention being able to (unless I have missunderstood) Any help will gratefully received. Thanks!
I do love the wifimanager library, i used it on most of my esp8266 projects but personally I do prefer to keep the application configuration interface on a running webserver so that I can change it on the fly without the need to restart the mcu.
I think that makes sense for configurations you might want to change regularly, but for things that don't change that often or maybe even that you don't want end users messing with, Wifimanager does work out ok for it
What is the command to trigger the setup on demand? I understand you set up the network connection and then you can summon the setup window being still connected to the network. What is the line again? Brian triggers it by double reset but I can't see the whole code. Great video, thanks.
Brian this video is the best by far that I have found at explaining the option of adding custom text and number boxes to WiFiManager. I do have one question though. For my project I want the uswer to have the option of changing the values in the custom text box without the need to re-enter the WiFi credentials. The user can trigger the portal by pressing a button once setup is complete (and WiFi credentials have been verified OK). Is it possible to trigger the WiFiManager to launch wihout the need to enter credentials please? Thank you
I am thinking of a small digital paste at wall at areas of "wifi connection of ..." Like that title on top of it, the "Wifi Strength"(if at this area) and manual writing of % of disconnection(if move) maybe? Good idea right?
Great youtube content, as always! I wish I had a video like this when I started my projects. I often used IotWebConf as a WifiManager recently. Quick to implement if it fits in your project.
It gets saved to flash memory of the esp32. I don't think wifi manager actually saves it though, I believe the esp32 does this regardless of wifi manager, and wifi manager just makes use of this
Maybe I missed something, but basically if the ESP32 cannot connect, it will host the config portal which is available by anyone so anyone can enter WiFi credentials for a malicious network, for example?
The config portal SSID is password protected, so it being in config mode doesn't necessarily mean it's open. With my setup, someone with physical access to project (to double reset) and who knew the config portal wifi password would be able to configure the device to work on a different network. (And get access to api keys that are configured)
Just use ESPhome with a single line ya got your own AP fired up. You can also Use secrets to hardline your regular credentials and also fire up MQTT just as easy.
Great video, I want to use the webpage as part of my ESP-NOW work, On the sensor it still won’t connect to the WiFi but I can use the webpage to allow the user to set channel no, encryption keys etc. For the receive it will be perforce to allow the user to setup details then connect to wifi.\
@@BrianLough Not completely sure, as I don't use WiFiManager any more. :) But the initial idea was to share the same admin gui for developers to provide their own configuration, that also manages WiFi status. I believe, I have made a good job on that. The whole IotWebConf system is highly customizable, and developer-friendly.
Wonderful video, thanks brian, raw string literal.. learned something today! Noice. Yay web flash! I have been looking into this also as it works wonders for a few libs I use like tasmota, OMG etc
I always enjoy listening to someone who knows their subject, even if I don't fully understand the content.
Thanks Colin, this is kind of an extra weird one as it brings in html/JavaScript into the mix too, as if Arduino/c++ wasn't complicated enough 😅
The simplest and most intuitive tutorial that I found!
"use of atoi" ... kicked my off my chair. LOL. Nice one, did not know about this project before.
Thank you Brian. The concept of a web front end to control a micro controller isn't new. However, your video gives it new life. This is a very useful approach for limited hardware or offline operation.
This is fantastic. I first found your channel because of your wifi manager video back in the day. Thanks for years of great content.
Thank you! You've explained the complexity of WiFiManager in a very simple way!
Also awaiting your announced WiFi-flash video.
Thanks a lot for this!!! I wanted to use wifimanager some time ago, but exactly as you described - got so lost in too many options that I gave up. This helps a lot.
Hope it helps Robert!
Nice! Tablatronix has done some great work maintaining and adding to the WiFimanager project - but I do miss the days of where it was much simpler to implement and use ;)
With great power comes great scope creep 😅
Thanks man, I wasted 2 days banging my head on the table :D you are my savior
BRILLIANT, I've been looking for something like this for quite a while. THANK YOU! :) Hermann
Good video. I've been using that library on two ESP32 projects. It works well and I'm using custom inputs as well..
Nicely done, and some really useful and detailed information. Oh, and I didn’t actually notice any focus issues, just your reminder that their apparently were some. 😎
Yeah it was not bad enough to not use the footage, but just bad enough that it annoyed me the entire time I was editing it , that lovely in focus lcsc box with a slightly blurry me 😅
Once again, Another excellent vid Brian.
Thanks for that Brian will have to watch it a few times to get my head round it.
Most useful lib. You've just earned yourself a like, sub, and now a comment too
Nice video. I originally got this working watching DronebotWorkshop's video. Yours adds more information that is additionally helpful. Thanks!
looking forward to OTA video, nice stuff
Nice video for a super useful library! It needs some work but you might find our YoYoWiFiManager interesting - it has a couple of interesting tricks, notably setting WiFi credentials for multiple devices through one web interface - I used it in my ThreeWiFiMeters project (all of these are on github)
Looks cool David, thanks for sharing!
Valuable Resource thanks for sharing .
Is it possible to extract your WPA PSK from the ESP flash afterwards? I'm hesitant to put ESP32 outside for that reason
Yes, regardless of how you connect to the wifi with the esp (wifimanager or not) the ssid and password are written to flash memory and can be read back
github.com/witnessmenow/ESP-Web-Tools-Tutorial/blob/main/CodeExamples/BlinkWhenConnected/BlinkWhenConnected.ino#L44
There maybe some ways to secure against this, but I don't know them
@@BrianLough Thank you!
So I was right to be concerned
this is great, thanks Brian!
Great a new video Brian either that or I have missed a load🙂
The video factory is slowly coming back online 😅
Thanks for a great video.
I'm working on a non Arduino based version, as I’m not an Arduino fan boy. Plus I like to know what’s going on behind any statement that has a "begin" in it. Way too easy to use the library and get it running in 5min, FreeRTOS is my hair shirt that I have to endure. :-)
Still a nice and easy video to follow
Hi Brian, I’m quite new to using the ESP boards and I’ve managed to get my project up and running but I’m trying to implement on demand portal functionality. Doing so is causing issues and I cannot get it to work with Autoconnect. I’ve read that you cannot use both, yet you mention being able to (unless I have missunderstood) Any help will gratefully received. Thanks!
I do love the wifimanager library, i used it on most of my esp8266 projects but personally I do prefer to keep the application configuration interface on a running webserver so that I can change it on the fly without the need to restart the mcu.
I think that makes sense for configurations you might want to change regularly, but for things that don't change that often or maybe even that you don't want end users messing with, Wifimanager does work out ok for it
Can you share your project?
What is the command to trigger the setup on demand? I understand you set up the network connection and then you can summon the setup window being still connected to the network. What is the line again? Brian triggers it by double reset but I can't see the whole code. Great video, thanks.
Brian this video is the best by far that I have found at explaining the option of adding custom text and number boxes to WiFiManager. I do have one question though. For my project I want the uswer to have the option of changing the values in the custom text box without the need to re-enter the WiFi credentials. The user can trigger the portal by pressing a button once setup is complete (and WiFi credentials have been verified OK). Is it possible to trigger the WiFiManager to launch wihout the need to enter credentials please? Thank you
Do you know if something similar is available in Esspressif library?
Great video. Thanks
this is nice but how much does it take when uploaded to the esp, the standard wifi code already uses to much
I am thinking of a small digital paste at wall at areas of "wifi connection of ..." Like that title on top of it, the "Wifi Strength"(if at this area) and manual writing of % of disconnection(if move) maybe? Good idea right?
Great youtube content, as always! I wish I had a video like this when I started my projects. I often used IotWebConf as a WifiManager recently. Quick to implement if it fits in your project.
Really like this manager but would like an implementation for Arduino NANO RP2040 Connect. Is anyone working on this ?
Thank you for your helpful video! I was wondering where does the WiFiManager save the SSID and password. Did you come across this case?
It gets saved to flash memory of the esp32. I don't think wifi manager actually saves it though, I believe the esp32 does this regardless of wifi manager, and wifi manager just makes use of this
Maybe I missed something, but basically if the ESP32 cannot connect, it will host the config portal which is available by anyone so anyone can enter WiFi credentials for a malicious network, for example?
The config portal SSID is password protected, so it being in config mode doesn't necessarily mean it's open.
With my setup, someone with physical access to project (to double reset) and who knew the config portal wifi password would be able to configure the device to work on a different network. (And get access to api keys that are configured)
Thank you for your excellent video! Do you know how to use the WifiManager on WiFiNINA of Arduino Nano 33 families?
Hello. Thank you for your effort. Unfortunately SPIFFS are no longer available. Can you point me to some other solution?
For what board?
LittleFS is the replacement on the esp8266 as far as I know
Just use ESPhome with a single line ya got your own AP fired up. You can also Use secrets to hardline your regular credentials and also fire up MQTT just as easy.
Great video, I want to use the webpage as part of my ESP-NOW work, On the sensor it still won’t connect to the WiFi but I can use the webpage to allow the user to set channel no, encryption keys etc. For the receive it will be perforce to allow the user to setup details then connect to wifi.\
What about IotWebConf? (Not just because I have developed it. :)
Cool, what are the advantages of it?
@@BrianLough Not completely sure, as I don't use WiFiManager any more. :) But the initial idea was to share the same admin gui for developers to provide their own configuration, that also manages WiFi status. I believe, I have made a good job on that. The whole IotWebConf system is highly customizable, and developer-friendly.
alot???