Posts

How To Make WiFi Jammer Using by ESP8266 mini

Image
  Software :-  https://drive.google.com/file/d/1-9s7sj15ATiX8__HhG3FrPQWxdvFRl56/view?usp=drivesdk Instagram:-  https://www.instagram.com/technical_ideas_07/?hl=en YouTube :-   https://youtube.com/c/TechnicalidEas07

How To Make Resistor Meter

Image
  Code :-  https://drive.google.com/folderview?id=1-KJohJAW9L3mX6Ng-Kmaw0NC9P0ZkhJ4 technicalidEas07 This password will not work for a few days :( 📌 If you want to know the password, then DM on Instagram :) Will get reply within 24 hours. Instagram ID :-  https://www.instagram.com/technical_ideas_07/?hl=en Facebook :-  https://m.facebook.com/technicalidEas07/ What's App :-  wa.me/916000180664 Group :-   https://chat.whatsapp.com/I4Nv0YEt1hK3Z9EVjsvngh

How to Make Object Detector

Image
  Instagram Facebook YouTube Code :- /* code started code created by Technical idEas  #define buzzer=11  #define led=12 #define trigPin = 10; #define ehoPin = 9; 16x2 lcd connection                  rs = 2, en = 3, d4 = 4, d5 = 5, d6 = 6, d7 = 7;    channel link :- https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw */ #include <LiquidCrystal.h>  LiquidCrystal lcd(2, 3, 4, 5, 6, 7); const int trigPin = 10; const int echoPin = 9; long duration; int distance; void setup() {     pinMode(trigPin, OUTPUT);    pinMode(echoPin, INPUT);      pinMode(11, OUTPUT);    pinMode(12, OUTPUT);   Serial.begin(9600);      lcd.begin(16,2);    lcd.setCursor(0, 0);     lcd.print("  Technical idEas "); delay(5000);   } void loop() {     digitalWrite(trigPin, LOW);       delayMicroseconds(2);     ...

Packets Counting Machine By Technical idEas

Image
📌 If you need any help, you can Message on Instagram 📌  Instagram 📌  Facebook 📌 Group :-  https://chat.whatsapp.com/I4Nv0YEt1hK3Z9EVjsvngh 📌 Code :-  https://drive.google.com/file/d/1P4kvi9EnyBFMaCiYIMJmjbD024hMCkHR/view?usp=drivesdk It has a password in it. Watch the full video to know the password i2c library :-  https://drive.google.com/file/d/1xDDEKskHI_jZ0qTfNmhigIBERh0TemSO/view?usp=drivesdk                                   Watch the Video

How to Make Distance Meter

Image
  Instagram Facebook YouTube Code :-  /* Code Started Distance metre using by ultrasonic sensor Crated By Technical idEas YouTube Channel Link :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw */ #include <LiquidCrystal.h> #define trigger 5 #define echo 6   const int rs = 7, en = 9, d4 = 10, d5 = 11, d6 = 12, d7 = 13; LiquidCrystal lcd(rs, en, d4, d5, d6, d7);   float time=0,distance=0;   void setup()     {      lcd.begin(16,2);      pinMode(trigger,OUTPUT);      pinMode(echo,INPUT);      lcd.print(" Ultra sonic");      lcd.setCursor(0,1);      lcd.print("Distance Meter");      delay(2000);      lcd.clear();      lcd.print(" Technical idEas");    delay(2000);     }   void loop()     {      lcd.clear();      digitalWrite(trigger,LOW); ...

Clap Switch By Technical idEas

Image
Instagram       If there is any Problem to Create the Project, you can message on Instagram. I will reply within 24 hours.🤗  // Code Started // Created By Technical idEas(YT) // https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw int micPin = A0;          // pin that the mic is attached to int gndPin = A1; int powerPin = A2; int micValue1 = 0;   int micValue2 = 0; // the Microphone value int led1 = 13; boolean lightOn = false; void setup() {   pinMode(led1, OUTPUT);   pinMode(powerPin, OUTPUT);   pinMode(gndPin, OUTPUT);   pinMode(micPin, INPUT);   digitalWrite(gndPin,LOW);   delay(500);   digitalWrite(powerPin,HIGH);   Serial.begin(9600);  //for test the input value initialize serial } void loop() {   micValue1 = analogRead(micPin);  // read pin value   Serial.println(micValue1);   delay(1);   micValue2 = analogRead(micPin);   Serial.println(micValue2...

16X2 Display With Arduino

Image
  Subscribe Now    Instagram   👈🏻   If there is any problem to make it, message me on Instagram and I will reply within 24 hours. Facebook                                 Arduino Code :-  /* This Code Created by Technical idEas(YT) Channel Link :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw */ // include the library code: #include <LiquidCrystal.h> const int rs = 7, en = 9, d4 = 10, d5 = 11, d6 = 12, d7 = 13; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() { lcd.begin(16, 2);     lcd.print(millis() / 1000); } void loop() {   lcd.setCursor(0,0);   lcd.print("Hey Friends");   delay(4000);   lcd.clear();   lcd.setCursor(0,0);   lcd.print("I am Samrat");   delay(3000);   lcd.clear();   lcd.setCursor(0,0);   lcd.print("I am a YouTuber    ");   delay(3000);   lcd.clear(); ...