Random Nerd Tutorials -Created by Rui Santos & Sara Santos Random Nerd Tutorials is a blog where we share electronics projects, tutorials and reviews. We help makers, hobbyists and engineers build electronics projects. We make projects about: ESP32, ESP32-CAM, ESP8266, Raspberry Pi, Raspberry...
In this tutorial we’re going to show you how to build a web server with the ESP32 that controls the shaft’s position of a servo motor using a slider. First, we’ll take a quick look on how to control a servo with the ESP32, and then we’ll build the web server. Watch the V...
This tutorial is the second part of this article ESP32 Web Server: Control Stepper Motor (HTML Form), but it can also be followed as a standalone tutorial.To better understand how this project works, you can take a look at the following tutorials:...
/*** Rui Santos & Sara Santos - Random Nerd Tutorials Complete instructions at https://RandomNerdTutorials.com/esp32-web-server-gauges/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files. The above copyright notice an...
Complete project details at https://RandomNerdTutorials.com/esp32-servo-motor-web-server-arduino-ide/ Based on the ESP32Servo Sweep Example ***/#include<ESP32Servo.h>staticconstintservoPin=13;Servo servo1;voidsetup(){Serial.begin(115200);servo1.attach(servoPin);}voidloop(){for(intposDegree...
/* Rui Santos Complete project details at https://RandomNerdTutorials.com/esp32-mpu-6050-web-server/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files. The above copyright notice and this permission notice shall be ...
2. Video Streaming Web Server CodeAfter that, copy the code below to your Arduino IDE./*** Rui Santos Complete project details at https://RandomNerdTutorials.com/esp32-cam-video-streaming-web-server-camera-home-assistant/ IMPORTANT!!! - Select Board "AI Thinker ESP32-CAM" - GPIO 0 must...
Create a WebSocket server with the ESP32 to display sensor readings on a web page. Whenever the ESP32 has new readings available, the web page is updated automatically without the need to manually refresh it.
Build a Wi-Fi remote controlled car robot with the ESP32-CAM board. Control the robot using a web server that displays a video streaming of what the robot “sees”.
/*** Rui Santos Complete project details at https://RandomNerdTutorials.com/esp32-relay-module-ac-web-server/ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ***/ // Import required libraries #include "WiFi.h" #...