WiFiManager VS esp-idf

Compare WiFiManager vs esp-idf and see what are their differences.

WiFiManager

ESP8266 WiFi Connection manager with web captive portal (by tzapu)

esp-idf

Espressif IoT Development Framework. Official development framework for Espressif SoCs. (by espressif)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
WiFiManager esp-idf
41 245
6,344 12,379
- 2.4%
7.7 10.0
19 days ago 6 days ago
C++ C
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

WiFiManager

Posts with mentions or reviews of WiFiManager. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-27.
  • Need some opinions on a clock I'm planning to sell online that involves ESP8266
    2 projects | /r/esp8266 | 27 May 2023
  • Esp-Idf wifi manager
    3 projects | /r/esp32 | 20 Mar 2023
    Hello. Some time ago I' ve strugled with seting up wifi manager in esp_idf framework. Most popular wifi manager made by tzapu was not working on esp-idf framework inside PlatformIo. So I have found tonyp7. It started to work after many changes in library code and makefiles. I have some free time and I can make WifiManager suited to bare esp-idf and esp-idf inside PlatformIo. My question is- do somebody need this ? Maybe there are alternatives which i did not find and my work is pointless. Please share your opinion
  • Making it easy for customer/ client to put in wifi credentials onto a pre-programmed IoT device
    4 projects | /r/esp32 | 18 Feb 2023
    Is that fork needed still? It seems like the main project claims support for esp32 now? https://github.com/tzapu/WiFiManager
  • SOFT AP Mode for ws2812b LED Matrix Sign using esp8266 and Adafruit Neomatrix library.
    3 projects | /r/esp8266 | 6 Feb 2023
  • How are folks handling WiFi credentials?
    4 projects | /r/esp32 | 27 Dec 2022
    I use WifiManager (https://github.com/tzapu/WiFiManager) .. it will setup the device as an access point you connect to and configure the wifi.
  • I made a Wifi Manager for ESP32 and would like some critique
    2 projects | /r/esp32 | 8 Nov 2022
    Reminds me of this. I will try it out.
  • Provisioning Alternatives
    2 projects | /r/esp32 | 16 Jun 2022
    WifiManager (https://github.com/tzapu/WiFiManager or https://registry.platformio.org/libraries/khoih-prog/ESP_WiFiManager_Lite):
  • ESP32 keeps triggering WDT while running WiFi Manager on Core0. Could you help me?
    2 projects | /r/esp32 | 18 May 2022
    If you have other code that does not rely on being connected to WiFi I would look into running WiFi manager in none blocking mode. There is an example here: https://github.com/tzapu/WiFiManager/blob/master/examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino
    2 projects | /r/esp32 | 18 May 2022
    // I won't hide these informations bellow because this is just a test. You can compile on your esp32 #define BLYNK_TEMPLATE_ID "TMPLc9VK-ym3" #define BLYNK_DEVICE_NAME "Wifi Bluetooth ESP32 DHT Station" #define BLYNK_AUTH_TOKEN "IzH-vvhVf0uLJaV54Ziero7kjUiFeq5g" #include // https://github.com/tzapu/WiFiManager #include #define TRIGGER_PIN 22 #define LED_PIN 23 TaskHandle_t Task1; int timeout = 120; unsigned long blink_timer; char auth[] = BLYNK_AUTH_TOKEN; WiFiManager wm; void wifi_stuff( void * pvParameters ){ Serial.print("wifi_stuff running on core "); Serial.println(xPortGetCoreID()); for(;;){ if(!Blynk.connected()){ wm.autoConnect(); Blynk.config(auth); Blynk.connect(5000); } if ( digitalRead(TRIGGER_PIN) == LOW) { WiFiManager wm; wm.resetSettings(); wm.setConfigPortalTimeout(timeout); if (!wm.startConfigPortal("OnDemandAP")) { Serial.println("failed to connect and hit timeout"); } wm.setEnableConfigPortal(false); } } } void setup() { WiFi.mode(WIFI_STA); // explicitly set mode, esp defaults to STA+AP Serial.begin(115200); Serial.println("\n Starting"); pinMode(TRIGGER_PIN, INPUT_PULLUP); pinMode(LED_PIN, OUTPUT); wm.setEnableConfigPortal(false); wm.autoConnect(); Blynk.config(auth); Blynk.connect(5000); //blynk connect timeout xTaskCreatePinnedToCore( wifi_stuff, /* Task function. */ "Task1", /* name of task. */ 10000, /* Stack size of task */ NULL, /* parameter of the task */ tskIDLE_PRIORITY, /* priority of the task */ &Task1, /* Task handle to keep track of created task */ 0); } void loop() { Blynk.run(); //bellow is for debug if (millis() - blink_timer > 300){ digitalWrite(LED_PIN, !digitalRead(LED_PIN)); blink_timer = millis(); Serial.println(Blynk.connected()); } }
  • IoT Cheese Press
    3 projects | /r/esp8266 | 7 Dec 2021
    Oh and if you're implementing it yourself and want a captive portal look into WifiManager. It's pretty much the standard ESP captive portal.

esp-idf

Posts with mentions or reviews of esp-idf. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-07.
  • ESP-IDP and pytest markers for supported targets
    2 projects | /r/esp32 | 7 Dec 2023
    IDF contains stuff like https://github.com/espressif/esp-idf/blob/master/pytest.ini and https://github.com/espressif/esp-idf/blob/master/tools/ci/idf_pytest/constants.py which are not part of the pytest-embedded package.
  • Unveiling secrets of the ESP32: creating an open-source Mac layer
    5 projects | news.ycombinator.com | 6 Dec 2023
    ugh.. arduino.

    Better to start with ESP-IDF, there's a pretty full featured well documented web server, and a lot more.

    https://github.com/espressif/esp-idf/tree/master/examples/pr...

  • ESP32-S3 Usb host hid
    2 projects | /r/esp32 | 6 Sep 2023
    Hi, I have device ESP32-S3-DevKitM-1 and i want to catch keystrokes from keyboard. I tried using this https://github.com/tanakamasayuki/EspUsbHost and example from espressif https://github.com/espressif/esp-idf/tree/release/v5.1/examples/peripherals/usb/host/hid/main but when i connect keyboard it is just connecting and disconnecting. Can anyone help me with this?
  • Using ESP32C6 to run wifi and Thread simultaneously
    3 projects | /r/embedded | 11 Jul 2023
    According to this page, coexistence of WiFi and 802.15.4 is now supported. Thread is based on 802.15.4.
    3 projects | /r/embedded | 11 Jul 2023
    The example: https://github.com/espressif/esp-idf/tree/master/examples/openthread/ot_br "The example could also run on a single SoC which supports both Wi-Fi and Thread (e.g., ESP32-C6), but since there is only one RF path in ESP32-C6, which means Wi-Fi and Thread can't receive simultaneously, it has a significant impact on performance. Hence the two SoCs solution is recommended."
  • How to Master Esp32
    2 projects | /r/embedded | 3 Jul 2023
  • ESP32-C3 Wireless Adventure: A Comprehensive Guide to IoT [pdf]
    9 projects | news.ycombinator.com | 14 Jun 2023
    The latest, but it was a few months ago. The results were off by 400 meters, and many persons have the same problems : https://github.com/espressif/esp-idf/issues/8976
  • ESP32 i2c (BMP280) not working with ESP-IDF but OK with Arduino IDE
    4 projects | /r/esp32 | 10 Jun 2023
    Use an official I2C example form the IDF. Like this: https://github.com/espressif/esp-idf/blob/master/examples/peripherals/i2c/i2c_simple/main/i2c_simple_main.c I’stand corrected with respect to the call order, it appears the driver install comes later. Your speed is unusually low, use the default speed of 400K. If you still get the error in the setup, use the source: the IDF is fully source distributed. Look into the implementation of the function, which errors occur form which code parts. Use ESP_LOGE or similar calls to get output messages on where you are getting to within the code. So that you learn where it’s expectations aren’t met.
  • How to analyse binary coredump
    2 projects | /r/esp32 | 26 May 2023
    You'll need the core dump and the ELF file, assuming you have them both, you will need espcoredump.py (Github), but it's easier to install the whole ESP-IDF (docs.esspressif.com) package as the coredump tool has dependencies.
  • Reading external USB mass storage
    6 projects | /r/esp32 | 22 May 2023
    I habe: https://github.com/espressif/esp-idf/tree/efe919275e8f4516ffd5f99f9a59e9d3efbae281/examples/peripherals/usb/host/msc

What are some alternatives?

When comparing WiFiManager and esp-idf you can also consider the following projects:

arduino-esp32 - Arduino core for the ESP32

MicroPython - MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems

WLED - Control WS2812B and many more types of digital RGB LEDs with an ESP8266 or ESP32 over WiFi!

ESPAsyncWiFiManager - Port WiFiManager to ESP Async Server

Unity Test API - Simple Unit Testing for C

esptool-js - Javascript implementation of flasher tool for Espressif chips, running in web browser using WebSerial.

esp32-wifi-penetration-tool - Exploring possibilities of ESP32 platform to attack on nearby Wi-Fi networks.

ElegantOTA - OTA updates made slick and simple for everyone!

wolfssl - The wolfSSL library is a small, fast, portable implementation of TLS/SSL for embedded devices to the cloud. wolfSSL supports up to TLS 1.3!

ESP32-W5100 - PoC app to test W5100 integration to esp-idf

esp_wifi_repeater - A full functional WiFi Repeater (correctly: a WiFi NAT Router)

NTP-time-for-ESP8266-and-ESP32 - NTP time example for ESP8266 and ESP32 based on standard functionality