Because the grocery puts what you need at the back so you gotta look at everything and up the chances the house wins when you impulse buy some oreos Oreos is like put me in rhe way we gotta be in it to win it. Meanwhile we can't afford nothing so it's a convicting consumer chorus ultimately Ya know everything is baked in. Industry is held up by their seeming inability to know I ain't got money but they advertise anyway. That's a waste and it's priced into valuations down stream Who benefits from me getting laxative ads on the can because I took too long. Nothing about my file should indicate I've ever bought a single thing advertised to me. They have wasted like billions probably I won't break though because I'm BROKE 😂
at 14:06 the 200 is *NOT* a timout/timer/delay, it is the http réponse status code, which tells the client if his request succeeded (200) or not (4xx) or if the server had an error (5xx)... look up "http status codes"
YOU MAN! YOU ARE THE BEST!!!! I've been looking for months how to update my variables without refresh the page! and you take your time to explain in a very clean way! ThankYou from Ecuador x1000!!!!!!!
Wow, Took me minutes to get your code working on my ESP32, -- took a week to find your video. You sir are a steely eyed missile man. I learned a great deal, many thanks.
hi Kris, just wanted to say that your tutorial is amazing! so much context, and guidance. It's so awesome that you take the time to explain the "what could go wrong" scenarios, and give tips on how to debug. I feel these are the most important subjects when learning to program, shit will break, and how do you resolve that. Thanks man!
Amazing what you had to go through to just come to grips with the web stuff. Those of us who have been at it since the early 90's can tell you that the learning curve is steep, especially now that there are so many options out there. JSON is pretty easy to use, because XML is not that popular anymore as it used to be decades ago (am I really getting that old?). Your system is just superb and I started this week with ESP32 and I am amazed at it. Never really worked with an MCU before. I knew waht ti was and what it was sued for, but nice to do it hands on. Your type of videos are so invaluable in inspiring and showing those of us with big ideas that our ideas are not silly, because it has been done already. Thanks again.
Thanks for the video. Never used XML in webpages. I used json along with "fetch()" function to request data from server and it works quite well. And yes, there are also videos on youtube where people use websockets when real time communication is needed. Its doesnt seem too hard to do.
Yeah, buddy mentioned that web socket is used more for monitoring and live debugging… Absolute easiest, and most lightweight method is just posting with Ajax. Laravel’s Request Model makes it stupid easy.
Great code man Thank You so Much. The code & explanation is very intuitive & concise. I never code other than C (beginner level) language before, so I was very happy my logic was aligned with the code. Other tutorials just feel so incomplete
All your videos are great assets to learners like me. You stand apart from others in your uniqueness and it is really a god's gift. Bring out your ideas to the world, let the present and future generation learn, benefit and cherish. With Great Regards and Best Wishes.
Hi Kris. You seem to like challenges.... so here's one: Get the ESP32 to dump live data into Libreoffice Calc whereby Calc charts the data coming against the time the data came in.
Kris: Hi from Canada. I tried it, I love it ! This example is the best. Thank you for spending the time in putting this together. Thank you for sharing your skills with us. Fantastic. PS, the wife says you are good looking. 🙄
Hello, first, thanks a lot for your video and your time to explain this, very usefull, but i have a problem, i have ESP8266 and, in this example you use ledcWrite and others mehods for ESP32 ONLY, you can make a modified version of this proyect to work with ESP8266? plz thanks so much!
@@KrisKasprzak Great, I will download it and probably use it as a base for my app. btw, I created one of the first commercial websites in the world, it was static html served by a ftp server. My last real job was hacking a massive web app for telemedicine video conferencing, scheduling, test results, etc. And I want nothing to do with that complexity anymore!
Brilliant manifestation of practical use of websockets and esp32. I have one question though. How can we send and recieve asynchronous data to an actual website that we create with html, css, and js rather than running it on the local host? Thanks and Best regards.
Great video and very well explained, I've started to study and go through and doing some playing around wit the code to learn and understand HTML coding. I have a question which part of the html code that makes the boxes and color's around the text as I would like to see about removing them to just show plain text or a border box around the text ?
the status bar boxes are classes inside the table, the java script controls the color and width. if you set the class properties to some fixed value and remove the java updated code, you should be able to get a border (or nothing) around the text. note HTML + CSS + JAVA script is a real pain to write in.
Hello! Very good video and it works! If you can explain one question, why is the slider not synchronized on windows and android? The button and switch do this without any problems.
Amazing thank you so much - as you say it is SO confusing - trying to chase things through - and your video takes a lot of the mystery out of the coding. And as you say at the start - most demostrations only show one aspect where as you have demonstrated multiple aspects of web page response systems. Have you come across ESPASyncWebServer ? - Think that is another way which might take care of website updating and avoiding rebooting of the device due to Timeout. Thank you so much for publishing this video - fantastic ...
Nice👍🏼 much needed clear tutorial. I’ve seen dozens of tutorials but that refresh the page all the time. Instead of Ajax and xml, would this work with websockets ? That might take this to the ultimate level 🙂
Thank you Kris for the excellent work, my question is can i control two esp32 from a single web page, if so can you please elaborate on the required changes on the code , thank you
Hello Kris, first of all thank you very much for providing such tutorial!, can i ask you where you have learned it? are there any extended courses available?
This has been extremely helpful! Do you know how to do the server.handleclient function without the arduino libraries? im trying to recreate in the esp-IDF and everything but the live update is working so far, but im pretty stumped on how to get that handleclient working EDIT: looks like the esp- idf version doesnt need the server.handleclient function. I believe it must have setup an interrupt that periodically does the same thing that the arduino handleclient function does
Hi,this is honestly so awesome ! i have a question though, if i want to send more precise data to the site, like lets say instead of 2.6 volts i want to send 2.63 volts so its more precise how would i need to change the code ? thanks
look at the .ino around line 312, I do some math to get the whole number and the fractional part. I do this because of limited support for formatting floats in Arduino. You will need to adjust the *10 to get more digits.
Thank you very much for that great information... I want to know if i have my own website with domain and i want the webpage to be on my website and to start communicating with the esp . How to do that and how to let the website control different esp's based in something like id code as example for each esp i configure
2:25 ive heard that it it bc when you use esp as a keyboard simulator and what to reprogram it after the esp works like a keyboard the computer will see the esp at a keyboard and you will not be able to reprogram it that is what i heard so when you press the boot button you are setting the esp to a programing mode where all functions should be off and the esp is waiting for program
What would be involved in writing an ESP32 application, that takes data from the uart, but instead of displaying it from it's own webserver (TCP), it passes it wirelessly via bluetooth or via Wifi to another PC/Android? In terms of Wifi, maybe there's a UDP way that the ESP32 could send data to a PC on the same network? In terms of Bluetooth, I imagine if the ESP32 would need to bridge its uart connection with a bluetooth (SPP) connection? So the ESP32 could transmit an SSID and act as a hotspot.. and simultaneously the esp32 runs a webserver? If so, what kind of data thruput could you expect? Perhaps that's how the idea behind the dual-cores.. one does the AP, the other does the webserver? Regardless, if the ESP32 samples the ADC 2000 per second, and updates the web page with every new sample.. what will a client , connected to the hotspot/web-server, see as the sample rate? Or would it not be real-time, and instead the client must refresh the page manually to get fresh ADC samples? Perhaps the user could talk back to the ESP32 via the web page as well? BTW, very new to all this, just ordered an ESP32 8x8 RGB board, and an ESP-PROG JTAG programmer... hoping to use Visual Studio Code to code/debug on the esp32!
Howdy, Unfortunately the latest ESP libs broke several things (it looks like their API's changed). Until I modify the code, you can make these changes in the .ino file just comment out these lines in setup around line 120 //ledcSetup(0, 10000, 8); //ledcAttachPin(PIN_FAN, 0); //ledcWrite(0, FanSpeed); // disableCore0WDT(); around line 223 // ledcWrite(0, FanSpeed);
Hi Kris, most of the tutorials are done with WiFiServer library, yours has been done with WebServer. I've also read about AsyncWebServer many times and it is pretty confusing. Do you know the differences between these and which one is better in your opinion?
I'm using a heavily modified example that came with the ESP32 install. A key reason is the "on" method that will listen to incoming traffic and if a keyword is encountered it will fire a function. For example if the web page button is pressed, the java script will send back a "BUTTON_1" keyword, the library i'm using sees that and can process accordingly. I'm not sure if what you are considering can do that--otherwise you will need to write your own code for listening and processing.
@@KrisKasprzak Many thanks Kris .. Sorry I have not expained it properly . what I am after is this .. On startup the label above the slider does not show the value until the slider is operated . is there a way to update that ? Many thanks for your help .. I am a relative newbie to the web page stuff but find it fascinating
Thanks for this, I was able to get my webpage up and running really quickly using this example. One thing I don't understand is what keeps it going? The ESP only sends XML in response to a request from the webpage, so is "process()" called continuously by the webpage java script? How can I slow down the frequency with which the page is updated?
It’s been a while since I looked at the code, but inside the ESP code there is a handleclient function that pings the server. I think you can slow that down, but you’ll have to adjust the time out inside your webpage.
Hi, great video. Very well explained. I've been looking for something like this for a while to adapt it to my project. But I have a problem when trying to compile with the Arduino IDE. I get this error: "fatal error: network_provisioning/network_config.h: No such file or directory" I've searched the internet but haven't found anything. Any help with this problem? Thank you all very much
Thanks for your quick reply. I found the missing file online (it seems to support it). But now I get another error on line 117 "'ledcSetup' was not declared in this scope". I don't understand anything. I don't know what to do anymore. I don't know how this error can occur, I just downloaded (again) the .ino from your GitHub.
Hello, thanks for answering. I have managed to fix the library problem. I have finally found the file on the internet and it no longer gives an error. Now the error is given on line 119: 118 // configure the LED PWM functionalities 119 ledcSetup(0, 10000, 8); It shows the following error: Compilation error: 'ledcSetup' was not declared in this scope Thank you very much for your help
Very nice learning. When the web page is opened in two browsers, one browser's changes are not reflected in the other one. Is this normal behavior in this type of approach ?
Each instance of a web session is independent of others, fortunately. Imagine if changes made by one user were applied to others--meaning as you access your bank data, I can see it.
Would you happen to know if this is small to be hosted over a free server hoster like ngrok? I have tried hosting a couple other servers that way over ngrok so I can access it wherever i am as long as I have wifi but I have noticed that in the free tier of ngrok sometimes it is too big. How else would you suggest to access this website without having to be on the same network as the one the board connects to?
Try port forwarding. I am able to do this on my home Internet system because I have access to the router. Basically you just open access to the world to the ESP32. I’ve done this to mine and been able to connect to this Web server from anywhere. Port forwarding will create some weird IP address what you were used to connect to it
Hi Kris , excellent done. I have also modified the code in order to automatically work with both ESP32 and ESP8266. Let me know if you are interested to get it. Thanks. /GM
hello sir, thank you for this tutorial. i am getting started with ESP32. I am doing the project where i want to connect five ESP32 to one ESP32 and then , control all the other 5 ESP's GPIO pins with one using android app.so that i will have to connect only ESP to WIFI and not all. the connections should be 2 way so that main ESP will sent commands as well as get to know the status of others ESP. what do we call this method of connecting? how to achieve this any tutorials or reference materials?
@@KrisKasprzak wireless connection, this setup is for modelling railway, i have five locomotives with esp32, so on my mobile dashboard i want to see all the running trians details so that I can control their speed, control led on off. I do not want to connect each loco esp by IP address and then select it.
@@AkashJadhavIT I have a similar project where I connect five different MC used to a single ESP32 base. It’s all done wirelessly. Here are some units that may help you out ua-cam.com/video/hMjArKGucFA/v-deo.html There are several ways to do this. You could have all on the same channel with some type of ID there’s unique for each train. Your ESP 32 base could send out signals to Pole and set train data, or you could send data from your trains to your base. Your base can serve a webpage that you could connect with your phone or whatever to monitor each of the trains and set their speed. This is not going to be an easy project
UA-cam.... Why the hell i need to search for hours, when there is such a good video ?????
I've been looking for weeks. None of the dronebot code works anymore
Because the grocery puts what you need at the back so you gotta look at everything and up the chances the house wins when you impulse buy some oreos
Oreos is like put me in rhe way we gotta be in it to win it.
Meanwhile we can't afford nothing so it's a convicting consumer chorus ultimately
Ya know everything is baked in.
Industry is held up by their seeming inability to know I ain't got money but they advertise anyway.
That's a waste and it's priced into valuations down stream
Who benefits from me getting laxative ads on the can because I took too long.
Nothing about my file should indicate I've ever bought a single thing advertised to me.
They have wasted like billions probably
I won't break though because I'm BROKE
😂
say that again, but now slowey and you´ll get it
at 14:06 the 200 is *NOT* a timout/timer/delay, it is the http réponse status code, which tells the client if his request succeeded (200) or not (4xx) or if the server had an error (5xx)... look up "http status codes"
Kris, Thanks for taking the time share this information. So much better than the typical "lets turn on and off an led" video.
Glad it was helpful!
YOU MAN! YOU ARE THE BEST!!!! I've been looking for months how to update my variables without refresh the page! and you take your time to explain in a very clean way! ThankYou from Ecuador x1000!!!!!!!
Glad I could help
Wow, Took me minutes to get your code working on my ESP32, -- took a week to find your video. You sir are a steely eyed missile man. I learned a great deal, many thanks.
Too funny….not about the time to find this vid, but the missile man comment . Glad I could help!
For the first time some of this makes sense, thank you. The only thing I need now is how to get the video off a esp32 cam.
hi Kris, just wanted to say that your tutorial is amazing! so much context, and guidance. It's so awesome that you take the time to explain the "what could go wrong" scenarios, and give tips on how to debug. I feel these are the most important subjects when learning to program, shit will break, and how do you resolve that. Thanks man!
Glad I could help
Amazing what you had to go through to just come to grips with the web stuff. Those of us who have been at it since the early 90's can tell you that the learning curve is steep, especially now that there are so many options out there. JSON is pretty easy to use, because XML is not that popular anymore as it used to be decades ago (am I really getting that old?).
Your system is just superb and I started this week with ESP32 and I am amazed at it. Never really worked with an MCU before. I knew waht ti was and what it was sued for, but nice to do it hands on. Your type of videos are so invaluable in inspiring and showing those of us with big ideas that our ideas are not silly, because it has been done already. Thanks again.
Glad I could help post an update of what you’re doing I’m sure my subs would like to hear other stories
FINALLY, I found someone who makes it simple!! Thank you so much!!
Thanks for the compliment. Hopefully it will help you create some cool projects.
Thanks for the video. Never used XML in webpages. I used json along with "fetch()" function to request data from server and it works quite well. And yes, there are also videos on youtube where people use websockets when real time communication is needed. Its doesnt seem too hard to do.
Yeah, buddy mentioned that web socket is used more for monitoring and live debugging… Absolute easiest, and most lightweight method is just posting with Ajax. Laravel’s Request Model makes it stupid easy.
can u provide me that videos of real time communication ?? please ?
Kris,Thank you, this tutorial is so useful for me and every one.
Glad it was helpful!
Great code man Thank You so Much. The code & explanation is very intuitive & concise. I never code other than C (beginner level) language before, so I was very happy my logic was aligned with the code. Other tutorials just feel so incomplete
Great tutorial. Lot of content but you cover it well with a nice fast pace. Wish many other UA-camrs would do that!
I appreciate that!
Every time I recommend this video, the person says you should have blown the dust off the fan blades 😉 . Thanks again for sharing this ! ! 👍
All your videos are great assets to learners like me.
You stand apart from others in your uniqueness and it is really a god's gift.
Bring out your ideas to the world, let the present and future generation learn, benefit and cherish. With Great Regards and Best Wishes.
Thank you for your kind comments.
Спасибо, ваша работа дала мне больше понимания для постройки web интерфейса 🤝
This is "VERY HELPFUL"
Thanks a lot for posting video like this. ❤
This is an OUTSTANDING TUTORIAL! Thank you so much!
Very well documented repository and code! Congratulations!!
Very usefull and nice to understand. Thanks
Glad it was helpful!
amazing, got to monitor the robot arm swings using this tutorial
finally, my project works!
Glad to hear it.
Excellent, thanks chap, I've bookmarked this for my future self.
Wow. You absolutely rock. The video and code are incredibly helpful and super clear. Seriously, I cannot thank you enough!!!
You're very welcome!
Thank you for the tutorial and code sample.
Thank you for sharing the code!
No problem!
Excellent video for me, as I can program all the sensor reading and such, but am lousy with the HTML/XML/Web Server. This helped me a lot!
Glad it helped!
Works Great! Awesome! And my favorite...lots of commenting in the Code. lol
Great to hear!
Hi Kris. You seem to like challenges.... so here's one:
Get the ESP32 to dump live data into Libreoffice Calc whereby Calc charts the data coming against the time the data came in.
Kris: Hi from Canada.
I tried it, I love it !
This example is the best.
Thank you for spending the time in putting this together.
Thank you for sharing your skills with us.
Fantastic.
PS, the wife says you are good looking. 🙄
Glad I can help, and tell your wife thanks for me
This actually made sense to me, will try this weekend thank you.
1 min in and i already love the video
Thanks for the positive comment
Very fine video! Well explained and something I've been looking for to make my project. Thank you!
Hello, first, thanks a lot for your video and your time to explain this, very usefull, but i have a problem, i have ESP8266 and, in this example you use ledcWrite and others mehods for ESP32 ONLY, you can make a modified version of this proyect to work with ESP8266? plz thanks so much!
This is a great project. Thanks for all the work!
From Portugal
Obrigado!
Unfortunately, I'm a loser at website programming.
Would it be possible to get an example with a 2nd page and fields for entering numbers?
You made an amazing video with such a detailed explanation.
Glad it was helpful!
Wonderful tutorial! Thanks a lot for sharing! Also: Great voice!
Glad I could help!
Excellente présentation, bravo et MERCI
LOL, whenever I watch videos like this that show code I'm always trying to scroll down or up to see or re-see something. Always makes me lol
Don’t forget, there is a link to the source code in the description.
@@KrisKasprzak Great, I will download it and probably use it as a base for my app.
btw, I created one of the first commercial websites in the world, it was static html served by a ftp server. My last real job was hacking a massive web app for telemedicine video conferencing, scheduling, test results, etc. And I want nothing to do with that complexity anymore!
I was doing the same thing!
Brilliant manifestation of practical use of websockets and esp32. I have one question though. How can we send and recieve asynchronous data to an actual website that we create with html, css, and js rather than running it on the local host? Thanks and Best regards.
Excelente aula, muito útil, parabéns!
How the heck did the algo only now introduce me to your channel? Great work.
Glad you liked it.
Nice, just starting out with ESP32 👍
Have fun!
What a great tutorial! Thank you so much!
Thanks.
Hi Kris, just wanted to say that your tutorial is awesome, do you know how this can be used using Captive Portal. Thanks
Unfortunately not
Outstanding job. I'm just updating all my IoT toys here at home. Wish I can pay you a coffee!
I love this tutorial!
Glad I could help!
Great video and very well explained, I've started to study and go through and doing some playing around wit the code to learn and understand HTML coding.
I have a question which part of the html code that makes the boxes and color's around the text as I would like to see about removing them to just show plain text or a border box around the text ?
the status bar boxes are classes inside the table, the java script controls the color and width. if you set the class properties to some fixed value and remove the java updated code, you should be able to get a border (or nothing) around the text.
note HTML + CSS + JAVA script is a real pain to write in.
Hello! Very good video and it works! If you can explain one question, why is the slider not synchronized on windows and android? The button and switch do this without any problems.
Amazing thank you so much - as you say it is SO confusing - trying to chase things through - and your video takes a lot of the mystery out of the coding. And as you say at the start - most demostrations only show one aspect where as you have demonstrated multiple aspects of web page response systems.
Have you come across ESPASyncWebServer ? - Think that is another way which might take care of website updating and avoiding rebooting of the device due to Timeout.
Thank you so much for publishing this video - fantastic ...
Thanks, glad I could help.
cool nice to see a different coding video
Glad you liked it!
Nice👍🏼 much needed clear tutorial. I’ve seen dozens of tutorials but that refresh the page all the time. Instead of Ajax and xml, would this work with websockets ? That might take this to the ultimate level 🙂
Website is is definitely the ultimate I’m just not sure what kind of library support is out there
This is excellent! Can't wait to try it out.
Hope you enjoy it!
Awesome content! Thanks for the video!
Glad you liked it!
Thank you Kris for the excellent work, my question is can i control two esp32 from a single web page, if so can you please elaborate on the required changes on the code , thank you
Hello Kris, first of all thank you very much for providing such tutorial!, can i ask you where you have learned it? are there any extended courses available?
A couple of basic vids and a bunch of hacking.
Excelent video, thank you.
Glad you liked it!
This has been extremely helpful! Do you know how to do the server.handleclient function without the arduino libraries? im trying to recreate in the esp-IDF and everything but the live update is working so far, but im pretty stumped on how to get that handleclient working EDIT: looks like the esp- idf version doesnt need the server.handleclient function. I believe it must have setup an interrupt that periodically does the same thing that the arduino handleclient function does
Thanks Kris
Muito obrigado por compartilhar seus conhecimentos.
Hi,this is honestly so awesome ! i have a question though, if i want to send more precise data to the site, like lets say instead of 2.6 volts i want to send 2.63 volts so its more precise how would i need to change the code ? thanks
look at the .ino around line 312, I do some math to get the whole number and the fractional part. I do this because of limited support for formatting floats in Arduino. You will need to adjust the *10 to get more digits.
Thank you very much for that great information... I want to know if i have my own website with domain and i want the webpage to be on my website and to start communicating with the esp . How to do that and how to let the website control different esp's based in something like id code as example for each esp i configure
Great Video! Thank you!
Thanks, you saved me alot of time.
Glad I could help
Great Video, Thank you.
Glad you liked it.
Great video, I love it. Rare video with a lot of details :D tnQ
Glad you liked it!
It worked! Tank you sir.
Glad it helped
2:25 ive heard that it it bc when you use esp as a keyboard simulator and what to reprogram it after the esp works like a keyboard the computer will see the esp at a keyboard and you will not be able to reprogram it that is what i heard so when you press the boot button you are setting the esp to a programing mode where all functions should be off and the esp is waiting for program
Great video Inwas wondering what supermon does in this?
It is simply a .h file that lists the HTML and JavaScript code
Omg, this is a really awesome video !
I'm glad you like it
HI sir, thank you a lot for the video, I could not found WebServer can I follow the tutorial using esp 8266(nodeMcu)?
This is great tutorial :)
Hello, can you make a video to setup an EsP32 as a client and node is websocket server
this is a kind of video we need for esp323 project,any update for this video with added features
Amazing! Thanks!
Thank you too!
What would be involved in writing an ESP32 application, that takes data from the uart, but instead of displaying it from it's own webserver (TCP), it passes it wirelessly via bluetooth or via Wifi to another PC/Android?
In terms of Wifi, maybe there's a UDP way that the ESP32 could send data to a PC on the same network?
In terms of Bluetooth, I imagine if the ESP32 would need to bridge its uart connection with a bluetooth (SPP) connection?
So the ESP32 could transmit an SSID and act as a hotspot.. and simultaneously the esp32 runs a webserver? If so, what kind of data thruput could you expect? Perhaps that's how the idea behind the dual-cores.. one does the AP, the other does the webserver?
Regardless, if the ESP32 samples the ADC 2000 per second, and updates the web page with every new sample.. what will a client , connected to the hotspot/web-server, see as the sample rate? Or would it not be real-time, and instead the client must refresh the page manually to get fresh ADC samples? Perhaps the user could talk back to the ESP32 via the web page as well?
BTW, very new to all this, just ordered an ESP32 8x8 RGB board, and an ESP-PROG JTAG programmer... hoping to use Visual Studio Code to code/debug on the esp32!
Great Job, thanks a lot!
You're welcome!
Hi. Great work. Can you show how to add a graph to this code. Maybe a whole new video 😂
Thanks a lot for this video.
I tried to get it run, but compiler reports errors: ledc... functions are not declared
Howdy,
Unfortunately the latest ESP libs broke several things (it looks like their API's changed). Until I modify the code, you can make these changes
in the .ino file just comment out these lines
in setup around line 120
//ledcSetup(0, 10000, 8);
//ledcAttachPin(PIN_FAN, 0);
//ledcWrite(0, FanSpeed);
// disableCore0WDT();
around line 223
// ledcWrite(0, FanSpeed);
Hi Kris, most of the tutorials are done with WiFiServer library, yours has been done with WebServer. I've also read about AsyncWebServer many times and it is pretty confusing. Do you know the differences between these and which one is better in your opinion?
I'm using a heavily modified example that came with the ESP32 install. A key reason is the "on" method that will listen to incoming traffic and if a keyword is encountered it will fire a function. For example if the web page button is pressed, the java script will send back a "BUTTON_1" keyword, the library i'm using sees that and can process accordingly. I'm not sure if what you are considering can do that--otherwise you will need to write your own code for listening and processing.
great video
thx
Glad I could help
could u make a video how to do in espressif ide pls
can you please tell me where i can initialise the value on the slider on startup? .. brilliant code btw
change the value property
initial value here is 0 (%)
This would be 50 (%)
@@KrisKasprzak Many thanks Kris .. Sorry I have not expained it properly . what I am after is this .. On startup the label above the slider does not show the value until the slider is operated . is there a way to update that ?
Many thanks for your help .. I am a relative newbie to the web page stuff but find it fascinating
HI, thanks for this video - how do i upload these files into my ESP32-WROOM-32 using Arduino IDE?
you should be able to open the .ino in Arduino and select your board, then upload. make sure the .h file is in the same folder as the .ino
Can you please update/show how to draw the results in a chart?
Thanks for this, I was able to get my webpage up and running really quickly using this example. One thing I don't understand is what keeps it going? The ESP only sends XML in response to a request from the webpage, so is "process()" called continuously by the webpage java script? How can I slow down the frequency with which the page is updated?
It’s been a while since I looked at the code, but inside the ESP code there is a handleclient function that pings the server. I think you can slow that down, but you’ll have to adjust the time out inside your webpage.
@@KrisKasprzak Thanks, as is normally the way, I found the answer a few hours after posting the question. Thanks for the response 🙂
I get the network and can log into it but when I insert the page IP into a browser, there is no page found. Any Help??
Hi, great video.
Very well explained. I've been looking for something like this for a while to adapt it to my project.
But I have a problem when trying to compile with the Arduino IDE.
I get this error:
"fatal error: network_provisioning/network_config.h: No such file or directory"
I've searched the internet but haven't found anything.
Any help with this problem?
Thank you all very much
I’m not familiar with this problem. Can you get any of the library examples working?
Thanks for your quick reply.
I found the missing file online (it seems to support it). But now I get another error on line 117 "'ledcSetup' was not declared in this scope".
I don't understand anything. I don't know what to do anymore. I don't know how this error can occur, I just downloaded (again) the .ino from your GitHub.
Hello, thanks for answering.
I have managed to fix the library problem. I have finally found the file on the internet and it no longer gives an error.
Now the error is given on line 119:
118 // configure the LED PWM functionalities
119 ledcSetup(0, 10000, 8);
It shows the following error:
Compilation error: 'ledcSetup' was not declared in this scope
Thank you very much for your help
Very nice learning. When the web page is opened in two browsers, one browser's changes are not reflected in the other one. Is this normal behavior in this type of approach ?
Each instance of a web session is independent of others, fortunately. Imagine if changes made by one user were applied to others--meaning as you access your bank data, I can see it.
Dude I owe you a beer.
You’re very welcome, and I hope it’s a really big beer
better if can read dht + capacitive umidity analog
and use 2 relay board
Thank you a lot, This projct works just in local network ???
you can connect to an existing network or create an access point (no internet access though)
@@KrisKasprzak can you explain this more? How can I control the ESP32 from a different... country? 🙂
Don't be scared to try web sockets, no need to have a library 👌
Do you have an example code? I’m sure my subs would love to see how it’s done.
thanks you !
You're welcome!
Thanks!
Welcome!
i loved
How can I tell which library to install for the webserver. There's so many of them that have similar names. Or is webserver.h already preinstalled
I used the pre-installed one
thanks sir
Most welcome
Would you happen to know if this is small to be hosted over a free server hoster like ngrok? I have tried hosting a couple other servers that way over ngrok so I can access it wherever i am as long as I have wifi but I have noticed that in the free tier of ngrok sometimes it is too big. How else would you suggest to access this website without having to be on the same network as the one the board connects to?
Try port forwarding. I am able to do this on my home Internet system because I have access to the router. Basically you just open access to the world to the ESP32. I’ve done this to mine and been able to connect to this Web server from anywhere. Port forwarding will create some weird IP address what you were used to connect to it
@@KrisKasprzak That connection would not be secure though.
Hi Kris , excellent done. I have also modified the code in order to automatically work with both ESP32 and ESP8266. Let me know if you are interested to get it. Thanks. /GM
Sounds great!
Good night, can you send me the code it's for a project
hello sir, thank you for this tutorial. i am getting started with ESP32. I am doing the project where i want to connect five ESP32 to one ESP32 and then , control all the other 5 ESP's GPIO pins with one using android app.so that i will have to connect only ESP to WIFI and not all. the connections should be 2 way so that main ESP will sent commands as well as get to know the status of others ESP.
what do we call this method of connecting?
how to achieve this any tutorials or reference materials?
what connections are you thinking? Wireless or wired?
@@KrisKasprzak wireless connection, this setup is for modelling railway, i have five locomotives with esp32, so on my mobile dashboard i want to see all the running trians details so that I can control their speed, control led on off. I do not want to connect each loco esp by IP address and then select it.
@@AkashJadhavIT I have a similar project where I connect five different MC used to a single ESP32 base. It’s all done wirelessly. Here are some units that may help you out
ua-cam.com/video/hMjArKGucFA/v-deo.html
There are several ways to do this. You could have all on the same channel with some type of ID there’s unique for each train. Your ESP 32 base could send out signals to Pole and set train data, or you could send data from your trains to your base. Your base can serve a webpage that you could connect with your phone or whatever to monitor each of the trains and set their speed. This is not going to be an easy project