Posts

How to Make IOT BASED LPG LEAKAGE DETECTION SYSTEM

Image
                                    Full Video   Free Code :- #define BLYNK_TEMPLATE_ID "TMPL3DV-hZyu7" #define BLYNK_TEMPLATE_NAME "IOT GAS Leakage Detector" #define BLYNK_AUTH_TOKEN "ZntdeW8MQ0kJMnQSjBwjdn7xPA7ipfp1" #define BLYNK_PRINT Serial #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,16,2); char auth[] = BLYNK_AUTH_TOKEN; char ssid[] = "IOT";  // Enter your wifi name char pass[] = "00000000";  // Enter your wifi password int smokeA0 = A0; int data = 0; int sensorThres = 100; int BUZZER = D0; int FAN = D8; // Relay int SIM = D7;//GSM system BlynkTimer timer; void sendSensor(){ int data = analogRead(smokeA0); Blynk.virtualWrite(V0, data);   Serial.print("Pin A0: ");   Serial.println(data);   if(data > 449)     // Change the Trashold value   {

Servo Motor Control Using By Bluetooth HC-05

Image
  Code :- #include <SoftwareSerial.h> #include <Servo.h> // servo library  Servo myservo1, myservo2, myservo3, myservo4;  int bluetoothTx = 0; int bluetoothRx = 1; SoftwareSerial bluetooth(bluetoothTx, bluetoothRx); void setup() {   myservo1.attach(3);   myservo2.attach(5);   myservo3.attach(6);   myservo4.attach(9);   Serial.begin(9600);   bluetooth.begin(9600); } void loop() {   if(bluetooth.available()>= 2 )   {     unsigned int servopos = bluetooth.read();     unsigned int servopos1 = bluetooth.read();     unsigned int realservo = (servopos1 *256) + servopos;     Serial.println(realservo);     if (realservo >= 1000 && realservo <1180) {       int servo1 = realservo;       servo1 = map(servo1, 1000, 1180, 0, 180);       myservo1.write(servo1);       Serial.println("Servo 1 Rotate");       delay(10);     }     if (realservo >= 2000 && realservo <2180) {       int servo2 = realservo;       servo2 = map(servo2, 2000, 2180, 0, 180);  

Karimganj Boy Samrat Nath Smart Electric Cycle

Image
 Hey πŸ™‹πŸ»‍♂️ πŸ”΄Introduction:- I'm Young INNOVATOR SAMRAT NATH .I belong to a small village of KARIMGANJ district In ASSAM .The village that I belong to,is in a little backward area so I have faced lot of problems in overcoming the needs.My aim in life is to be a successful ___________ Engineer. πŸ”΄My Innovation:------------- I have worked in many INNOVATION PROJECTS such as :- πŸ”΄ SMART HOME πŸ”΄ SMART WATER FILTER πŸ”΄ SMART SECURITY CAMERA πŸ”΄ DIY MOBILE CONTROLLED MISSILE LAUNCHER and many more.......... (100+INNOVATION'S ) πŸ”΄My latest innovation is a SMART E-BIKE which is very unique and extraordinary than any other bike in the market today. I have been working on this project for a long time ( since 2016 ) and it has been a dream for me since my early childhood days .... πŸ”΄ FEATURES OF E-BIKE:----- My version of E-BIKE comes with various features like..... πŸ”΄ A FINGERPRINT SYSTEM which is used as a switch to start or stop the E-BIKE,which requires the owner's fingerprin

How to make CCTV camera using by ESP 32 CAM

Image
                                  Code:-  /*  by technical idEas */  #include "esp_camera.h" #include <WiFi.h> #define CAMERA_MODEL_AI_THINKER // Has PSRAM #include "camera_pins.h" const char* ssid = "*********"; // WIFI NAME const char* password = "*********"; // WIFI PASSWOARD void startCameraServer(); void setup() {   Serial.begin(115200);   Serial.setDebugOutput(true);   Serial.println();   camera_config_t config;   config.ledc_channel = LEDC_CHANNEL_0;   config.ledc_timer = LEDC_TIMER_0;   config.pin_d0 = Y2_GPIO_NUM;   config.pin_d1 = Y3_GPIO_NUM;   config.pin_d2 = Y4_GPIO_NUM;   config.pin_d3 = Y5_GPIO_NUM;   config.pin_d4 = Y6_GPIO_NUM;   config.pin_d5 = Y7_GPIO_NUM;   config.pin_d6 = Y8_GPIO_NUM;   config.pin_d7 = Y9_GPIO_NUM;   config.pin_xclk = XCLK_GPIO_NUM;   config.pin_pclk = PCLK_GPIO_NUM;   config.pin_vsync = VSYNC_GPIO_NUM;   config.pin_href = HREF_GPIO_NUM;   config.pin_sscb_sda = SIOD_GPIO_NUM;   config.pin_sscb_scl = SIO

Accelerometer Sensor with Arduino

Image
             What's App Group :-  https://chat.whatsapp.com/I4Nv0YEt1hK3Z9EVjsvngh Instagram :-  https://www.instagram.com/technical_ideas_07/?hl=en                                                                      Arduino Code /*   code started MPU-6050 interface with arduino   #define SDA= A4;   #define SCL= A5;   code created by technical ideas yt   https://youtube.com/c/TechnicalidEas07   #define led1 = 2;   #defineled2 = 3;   #define led3 = 4;   #define led4 = 5;  */ #include "Wire.h" // This library allows you to communicate with I2C devices. const int MPU_ADDR=0x68; // I2C address of the MPU-6050. If AD0 pin is set to HIGH, the I2C address will be 0x69. int16_t accelerometer_x, accelerometer_y, accelerometer_z; // variables for accelerometer raw data int16_t gyro_x, gyro_y, gyro_z; // variables for gyro raw data int16_t temperature; // variables for temperature data #define LED_LB 2 // LED left bottom #define LED_RB 3 // LED right bottom #define LED_RT 4 // LE

How to Make Car Security Alarm

Image
  Instagram Facebook YouTube   Code :-  https://drive.google.com/file/d/176gv1wHuTo3Qf0-k2gchRk2p39nPUBrO/view?usp=drivesdk Watch the full video and get the Password

How to Make Smart Dustbin

Image
  Massage On   Instagram                                 Arduino Code  :-  // code started  // created by technical idEas // https://youtube.com/c/TechnicalidEas07 #include <Servo.h> //servo library Servo servo;      int trigPin = 5;     int echoPin = 6;    int servoPin = 7; long duration, dist, average;    long aver[3]; //array for average void setup() {            Serial.begin(9600);     servo.attach(servoPin);       pinMode(trigPin, OUTPUT);       pinMode(echoPin, INPUT);       servo.write(0); //close cap on power on     delay(100);     servo.detach();  }  void measure() {    digitalWrite(10,HIGH); digitalWrite(trigPin, LOW); delayMicroseconds(5); digitalWrite(trigPin, HIGH); delayMicroseconds(15); digitalWrite(trigPin, LOW); pinMode(echoPin, INPUT); duration = pulseIn(echoPin, HIGH); dist = (duration/2) / 29.1; //obtain distance } void loop() {    for (int i=0;i<=2;i++) { //average distance     measure();                   aver[i]=dist;                 del