Steph
Steph
Hi @majidshakhsi, If your project involves standard AC lamps, you should consider using electromechanical relays to control them remotely via an ESP32. If you look around you will easily find...
This corresponds to the conditionnal ternary operator `?:`. ```cpp digitalWrite(pin, on ? HIGH : LOW); ``` is equivalent to: ```cpp if (on) { digitalWrite(pin, HIGH); } else { digitalWrite(pin, LOW);...
Hello Pete, And thank you for your nice feedback on the tutorial. I'm glad I was able to light your way. Concerning PlatformIO, I encourage you to persevere in learning...
Hi Greg, It's a great reward for me to know that I was able to help you and that the tutorial has really brought you something. Thank you for your...
Yes, indeed. It has already been pointed out to me and you can read [my answer](https://github.com/m1cr0lab-esp32/remote-control-with-websocket/issues/6#issuecomment-716323282). As far as programming a WebSocket client is concerned, I refer you to [Espressif's...
@gregrae Hi Greg! I found this [WebSocket Sample Application](https://github.com/espressif/esp-idf/tree/357a277603/examples/protocols/websocket) that should be useful to you ;-) It uses Espressif's ESP WebSocket Client. The [code](https://github.com/espressif/esp-idf/blob/357a2776032299b8bc4044900a8f1d6950d7ce89/examples/protocols/websocket/main/websocket_example.c) will give you the keys you...
Thanks for your nice feedback on the tutorial. I hope you found some interesting things. And thank you also for your version adapted to the NodeMCU board (with the ESP8266...
Hi Frits Jan, Thank you for your kind message. It's always a pleasure to receive thanks like yours, especially since I receive very few despite the time spent writing all...
I just went through your website this morning, and I filled in the contact form :-D (At the very bottom of the page... _"Zin in thee?"_) Didn't you get my...
Done ;-)