Gadgets In Details

Smart Home Automation System: Control LEDs with NodeMCU and Blynk App

Circuit Diagram: Code: #define BLYNK_TEMPLATE_ID “*****************” // paste the copied details from blynk cloud #define BLYNK_TEMPLATE_NAME “***************” #define BLYNK_AUTH_TOKEN “******************” #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> int led1=14; int led2=15; char auth[] = BLYNK_AUTH_TOKEN; char ssid[] = “******”; //your hotspot name char pass[] = “******”; //your hotspot password name void setup() {  Serial.begin(9600);  Blynk.begin(auth, […]

Smart Home Automation System: Control LEDs with NodeMCU and Blynk App Read More »

How to Build a Distance Measuring System Using STM32, Ultrasonic Sensor

In this step-by-step tutorial, we will guide you through building a distance measurement system using an STM32F103C8 microcontroller, an ultrasonic sensor (HC-SR04), an I2C LCD, and an FTDI TTL programmer. The project measures distance using the ultrasonic sensor and displays the result on the I2C LCD. Components Required STM32F103C8 microcontroller Ultrasonic sensor (HC-SR04) I2C LCD

How to Build a Distance Measuring System Using STM32, Ultrasonic Sensor Read More »