0:19
hello and welcome to controllers tech
0:23
i decided to continue the esp32 series
0:26
so that later i can merge it with the
0:28
sdm32 making the lives a little easier
0:31
while handling the internet of things
0:34
i have already covered a blink example
0:37
for the esp where i have covered the
0:39
setup for the esp-idf in both windows
0:43
if you haven't watched that video you
0:45
can check out the esp32 playlist and
0:48
watch the first video in it
0:51
this is second video in the esp32 series
0:54
and today we will see how to use the
0:59
here i will use the esb in the access
1:01
point mode so that the other devices can
1:06
i could have just provided you with the
1:08
code but instead i am going to show how
1:12
this is why this video is long and i
1:15
have split it into four parts
1:18
the first part will cover the setting up
1:20
the esp32 as the access point
1:23
then in the second part we will create a
1:28
and in the third part we will include
1:30
the html codes for the button and create
1:36
finally in the fourth part we will
1:38
include the led and blink it via the web
1:42
so let's start with the first part and
1:44
here we will just set the esp as the
1:49
create a new express idf project
1:53
just give some random name here and
1:57
now here we are going to use a template
2:00
go to wi-fi getting started and select
2:06
now give some proper name to this
2:07
project and click finish
2:22
let's change this to our device and
2:25
change this to run mode
2:33
here is the main file
2:40
it is going to take a lot of time for
2:41
the first build as it creates the c
2:51
all right it's finished and we don't
2:57
now go to sdk configuration
3:00
here go to the example configuration
3:06
set up the ssid and password whatever
3:16
here by default 4 stations can connect
3:21
after setting up click control plus s to
3:24
save the configuration
3:32
now let's build the project again
3:39
all right it's finished
3:41
let's flash it into our board
3:53
now we will open the serial monitor to
4:03
the access point has been initialized
4:06
and here you can see the ssid and
4:12
password let's connect to it
4:16
i have already connected it once before
4:18
so it's not asking for the password
4:21
you can see on the console the
4:23
connection was successful and it have
4:25
assigned an ip to this station
4:28
so our access point is created
4:30
successfully and we were able to connect
4:33
to this access point using the computer
4:37
this is it for this video
4:40
in the second video we will continue
4:42
with creating a simple web server