Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By zioax
#34566 I need to set up a webserver page for control a rc car, and what I would to do is just a page with 4 button, one for each command, until one of these is pressed should be executed a function, for example move the car on and back. Is this possible to do? Thanks
User avatar
By martinayotte
#34569 The simplest WebServer example is HelloServer :

https://github.com/esp8266/Arduino/blob ... Server.ino

Of course, the buttons need to be added, but it quite simple HTML code that will do some AJAX calls which will be receive by ESP Web Server under their own path. Then, you can have server.on() for each path, one per button, and you add your motor control code inside them.