-->
Page 1 of 1

NodeMCU V3 Cannot Connet to more than 12 char length SSID

PostPosted: Sat Mar 19, 2022 6:53 am
by fennarex
I'm trying to connect to an AP using:
SSID: this should be
password: 12345678

It fails to connect, but when I try with:
SSID: this should
password: 12345678

Code: Select all#include <AntaresESP8266HTTP.h >

#define WIFISSID "this should be"                     
#define PASSWORD "12345678"

antares.wifiConnection(WIFISSID, PASSWORD);


it works. Does NodeMCU V3 have a char limit to its SSID?

Re: NodeMCU V3 Cannot Connet to more than 12 char length SSI

PostPosted: Sat Mar 19, 2022 12:03 pm
by pratheek
Max character limit is 32.

Avoid using spaces in SSID. Early Arduino ESP core had problems connecting to SSIDs with spaces. But it was resolved.