ESP32-based Home Automation: A Beginner's Guide

preview_player
Показать описание
STEP By STEP Guide on how to set up the ESP32 and connect it to your home network.
Then, we'll show you how to control your appliances using your smartphone or manual switches.

► Get your first ESP32 board today and start exploring the world of IoT:

--------------------------------------------------------------------

FOLLOW ME:
--------------------------------------------------------------------

► All content by Enjoy Mechatronics is 100% free. I believe that education should be freely available to everyone.
Рекомендации по теме
Комментарии
Автор

Thanks for your efforts, but i would like to draw your kind attention that when you press on a button then refersh the web page it does not save that action, the summary is the last button you press it should be saved. thanks a lot

Sindbad
Автор

Thanks bro, great tutorial and easy to understand...i have something learn today, , ,

J_Creative
Автор

This is so cool. I have never dabbled in Arduino, but I always wanted to try. What a cool project.

ignatiusreilly
Автор

this program has not auto connect to wifi network when disconnect can you change the code for me to auto connect

venkatdheena
Автор

i guess i have to rely on my wifi security to keep my neighbors from opening my garage?

OnnieKoski
Автор

Where I found my ssid and password in mobile
If anyone knows please acknowledge me 😊😊❤

Mohankumar-dm
Автор

Hi, Thank you !!
I have several compilation errors, see below, what's going on? Thanks for your help.
In function 'bool getMD5(uint8_t*, uint16_t, char*)':
error: 'mbedtls_md5_starts_ret' was not declared in this scope; did you mean 'mbedtls_md5_starts'?
74 |
|
| mbedtls_md5_starts
error: 'mbedtls_md5_update_ret' was not declared in this scope; did you mean 'mbedtls_md5_update'?
75 | mbedtls_md5_update_ret(&_ctx, data, len);
|
| mbedtls_md5_update
error: 'mbedtls_md5_finish_ret' was not declared in this scope; did you mean 'mbedtls_md5_finish'?
76 | mbedtls_md5_finish_ret(&_ctx, _buf);
|
| mbedtls_md5_finish
In member function 'void
error: 'ets_printf' was not declared in this scope; did you mean 'vswprintf'?
189 | ets_printf("ERROR: Too many messages queued\n");
|
| vswprintf
In member function 'void
error: 'ets_printf' was not declared in this scope; did you mean 'vswprintf'?
549 | ets_printf("ERROR: Too many messages queued\n");
|
| vswprintf
Plusieurs bibliothèque trouvées pour "ESPAsyncWebServer.h"
Utilisé:
Non utilisé:
exit status 1

Compilation error: exit status 1

StéphaneMairiaux-nm