Posts

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;...

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...

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, HI...

How To Make Automatic Radha Krishna Jhula (Swing)

Image
  If there is any problem to create this project, you can DM on   Instagram Facebook What's app :-  wa.me/916000180664 Group :-  https://chat.whatsapp.com/I4Nv0YEt1hK3Z9EVjsvngh  👨🏻‍💻Code :-  /*   code started #define servo= 9; created by technical ideas   https://youtube.com/c/TechnicalidEas07 */ #include <Servo.h> Servo myservo;   int pos = 0;     void setup() {   myservo.attach(9);   } void loop() {   for (pos = 0; pos <= 180; pos += 1) {               myservo.write(pos);                            delay(4);                                  }   for (pos = 180; pos >= 0; pos -= 1) {               myservo.write(pos);      ...

DIY Clock Using By Arduino

Image
  Instagram Facebook What's App Group :-  https://chat.whatsapp.com/I4Nv0YEt1hK3Z9EVjsvngh Zip i2c :-  https://drive.google.com/file/d/1-OFtSUA04vZjHdXWHE3MpwxeZq4K6esz/view?usp=drivesdk Zip 16x2 :-  https://drive.google.com/file/d/1-Mv62C4WyZ64ZH1XOaRnttN4s1FuH-iV/view?usp=drivesdk Password :- TechnicalidEas07 I2C Code :-  /* code started #define push1= 10; #define push2= 11; #define push3= 12; #define buzzer= 13; created by Technical idEas (YT) chennal link :- https://youtube.com/c/TechnicalidEas07 diy clock using by arduino */ #include <Wire.h> #include<EEPROM.h> #include <RTClib.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,20,4); RTC_DS1307 RTC; int temp, inc, hours1, minut, add = 11; int next = 10; int INC = 11; int set_mad = 12; #define buzzer 13 int HOUR, MINUT, SECOND; void setup() { lcd.init(); // initialize the lcd lcd.init(); // Print a message to the LCD. lcd.backlight();...