Remote Controlling Endpoint devices using ESP32
top of page
Hello everyone, welcome to another series of video from Electronics Eternity. This time around we will be looking into "Remote...
Sep 143 min read
Port Forwarding
In the ever-evolving realm of Internet of Things (IoT), understanding how to connect devices to the internet securely and efficiently is...
Sep 12 min read
Bootstrap Custom Radio Button
Welcome to another exciting instalment from Electronics Eternity! In today's video, we dive into the creation of custom Bootstrap radio...
Dec 17, 20233 min read
Char Array Processing with Arduino (Finding IP Address)
Below is the code used in our tutorial : const unsigned int MAX_MESSAGE_LENGTH = 16; //192.168.255.255 + "\0" bool stringMatch = false; ...
Sep 3, 20234 min read
Part 4 JS Chart : JS Charts with PHP Database
Below are the codes used in this tutorial : Connecttodb.php <?php $servername = "localhost"; $username = "root"; $password = "XXXXX";...
Aug 6, 20231 min read
Medium Complexity Data Parsing
In this tutorial, we will be looking at medium level complexity data parsing thru Microsoft Excel. Below is the excel file used in this...
Jul 30, 20231 min read
Simple Data Parsing Using Excel
Below is the file used in our tutorial. The file already has the formulas that we need for our data parsing. For more detailed...
Jul 20, 20231 min read
Part 3 JS Chart : Pie and Doughnut Chart
Below is the code that is used in creating the pie and doughnut chart <!DOCTYPE html> <html lang="en"> <head> <title>JS Line...
Jul 4, 20231 min read
Part 2 JS Charts : Line Chart
In this tutorial, we will be looking at JS Line Chart. Below is the code used in the JS Line Chart. <!DOCTYPE html> <html lang="en">...
Jun 22, 20231 min read
Part 1 JS Chart : Bar Chart
Below is the code used to create a Bar Chart <!DOCTYPE html> <html> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Ch...
Dec 14, 20223 min read
Part 2 Bootstrap 5 : Tables
The below is the code for Bootstrap table samples. <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Table</title> <meta...
Nov 2, 20221 min read
Part 1 Bootstrap 5 : Headers
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport"...
Oct 5, 20224 min read
NodeMCU ESP32 Part 3 : Simple Wifi Server with Static IP
In this tutorial, we will be looking on how to create a Simple Wifi Server using Static IP and a bit of CSS Formatting to accentuate the...
Sep 13, 20222 min read
NodeMCU ESP32 Part 2 : Wifi Events
In this tutorial, we will be looking ESP32 WiFi Events. WiFi Events are basically any states or conditions related to a WiFi connection...
Sep 8, 20222 min read
NodeMCU ESP32 Part 1 : ESP Basics
In this tutorial, we will be looking at NodeMCU ESP32 basics where we will learn how to connect to a WiFi, getting MAC address, RSSI and...
Jul 24, 20225 min read
ESP Part 3 : Processing Response from ESP8266
In this tutorial, we will be looking into how to process response from ESP8266 and turn it into something more meaningful. Setup the...
Jul 23, 20221 min read
ESP Part 2 : Communicate directly to ESP8266 using Serial Monitor
In this tutorial, we will be looking at how to communicate with ESP8266 directly using Serial Monitor from Arduino IDE. Use the below...
Feb 19, 20222 min read
Flashing or Programming ESP8266
In this tutorial, we will be looking at how to flash or program our ESP8266. It is important to use the latest programs in our ESP8266 so...
Jan 8, 20223 min read
Part 4 : Creating a Simple UI in TFT LCD Display using Library
In this tutorial, we will be looking at how to create a simple user interface in TFT LCD Display using SPFD5408 library as shown below....
Dec 31, 20212 min read
Part 3 : Detecting Touch in TFT LCD Display using Library
In this tutorial, we will be learning how to detect touch in a TFT LCD Display. The code to detect touch is quite simple as shown below :...
bottom of page