Hello. First-time poster and very new to programming.
I'm trying to add the wifi Manager Libary to a small program I found. I replaced the project wifi code with the wifi manager code
Below code is what I Removed and replaced with wifi manager
const char ssid[] = "my wifi"; /* Replace with your SSID /
const char passphrase[] = "password"; / Replace with your WPA2 passphrase */
However later in the original program, I have this.
//e131.begin(ssid, passphrase); /* via Unicast on the default port */
Anybody know how I can pull the ssid and passpharse from wifi manager into the main code.
Please assume I'm an idiot, and very new to this...
wifi manager GitHub - tzapu/WiFiManager: ESP8266 WiFi Connection manager with web captive portal
e.131 GitHub - forkineye/E131: E1.31 (sACN) library for Arduino with ESP8266 support
attached is my "mongrel" code.
project_x.ino (3.57 KB)