tzapu/wifimanager

ESP8266 WiFi Connection manager with web captive portal

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 22 minutes ago
Added to GitGenius on September 9th, 2026
Created on June 3rd, 2015
Open Issues & Pull Requests: 672 (+0)
GitHub issues: Enabled
Number of forks: 2,086
Total Stargazers: 7,261 (+0)
Total Subscribers: 239 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 29.0 hours
Mean response time: 55.4 days
90th percentile: 166.7 days
Tracked items: 93

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 98% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 4% of issues opened in the past year have been closed. Three people close 53% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 86
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 778 days
Stale 30+ days: 86
Stale 90+ days: 82

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • Question (7)
  • enhancement (6)
  • bug (5)
  • Documentation (4)
  • DEV Help Wanted (2)
  • ESP32 (2)
  • Good First Issue (2)
  • In Progress (2)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

WiFiManager is a WiFi connection manager library for ESP8266 and ESP32 microcontrollers that provides a captive portal for network configuration.

The library solves the problem of configuring WiFi credentials on embedded devices without hardcoding them. When an ESP starts, it attempts to connect to a previously saved access point in station mode. If no saved network exists or connection fails, the device switches to access point mode and launches a web server with a captive portal. Users can connect to this access point from any WiFi-enabled device, and the captive portal automatically redirects browser traffic to a configuration page where they can select a network and enter credentials. The device then attempts connection and returns control to the application if successful.

The tool suits projects where WiFi configuration must happen in the field without serial console access or pre-programmed credentials. It works with both the ESP8266 Arduino platform and ESP32 Arduino platform. The library supports custom parameters beyond SSID and password, allowing developers to configure application-specific settings through the same portal. It offers non-blocking modes for integration into existing application loops and can be triggered on-demand rather than only at startup. The configuration portal can be password-protected and includes options to filter low-quality networks and customize IP configuration.

The project acknowledges that its documentation is out of date and identifies this as a known issue requiring attention. Development activity includes ongoing code cleanup and streamlining efforts. The maintainers have completed several wishlist items including removing EEPROM dependencies, moving HTML strings to program memory, and adding the library to both Arduino Library Manager and PlatformIO, though some items like multiple credential sets and documentation rewrite remain incomplete.