Notifications
Clear all

Introduction to ESP32 question

2 Posts
2 Users
0 Likes
1,276 Views
noweare
(@noweare)
Member
Joined: 4 years ago
Posts: 119
Topic starter  

Hello all,

I am just getting started using the esp32 controller.

Following up on the video "Intro to ESP32"  I can connect to my desktop using "connect to hidden network" option. Using "Create new wifi network" option did not work and security has to be none. Is that the normal connection method ?

I have an iphone and could not connect to the "yourAP' network as the iphone errored out with "can not find network". Does anyone know how to connect to iphones. Any help is appreciated.


   
Quote
Topic Tags
MadMisha
(@madmisha)
Member
Joined: 4 years ago
Posts: 340
 

Here is what I used for one of my projects a few years ago. I was able to connect to a hidden network with WPA2.

 

 

#include <WiFi.h>


const char* ssid = "Router Name";

const char* password = "Password";

WiFiServer server(80);

void setup()
{
WiFi.mode(WIFI_STA); // Sets wifi to station with no onboard AP
}

 

 

 

 


   
ReplyQuote