Это видео недоступно.
Сожалеем об этом.

Arduino SMART CAR | Bluetooth Mode+Obstacle avoiding+Voice Control

Поделиться
HTML-код
  • Опубликовано: 27 окт 2022
  • Hello Friends💙 ;
    This is my Project 05 in Arduino.
    In this video, we will learn how to make a multi-functional robot using the Arduino platform. That is, includes obstacle avoidance, Bluetooth control, and voice control functions.
    OK enjoy it now.
    Official Trailer ⏺:- • SMART CAR | Official T...
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Source code and circuit diagram 🔽
    drive.google.c...
    Password in This video included.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    3 MODES ▶
    20:41 Bluetooth control
    23:10 Obstacle avoiding
    24:23 Voice control
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    For More Information 🔽
    create.arduino...
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Music 🔽
    All music by NCS:- / nocopyrightsounds
    Music provided by NoCopyrightSounds.
    Thank you NCS.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Subscribe to My channel, Like and Share this video
    Help us in providing free knowledge.
    Thanks for watching.❤

Комментарии • 152

  • @hashansudeera7472
    @hashansudeera7472  Год назад +8

    //----------------------------SMART_CAR_Project---------------------------------------//
    //©hashan_sudeera
    #include
    #include
    //-----------------------B------------------------------//
    char value;
    int speedCar=255;
    boolean lightFront = false;
    boolean lightBack = false;
    boolean S_light = false;
    //------------------------O-----------------------------//
    int distance;
    int Left;
    int Right;
    int L = 0;
    int R = 0;
    int L1 = 0;
    int R1 = 0;
    //----------Defines----------------//
    #define Echo A0
    #define Trig A1
    #define S_motor 10
    #define F_LED A4
    #define B_LED A5
    #define SL_LED A2
    #define SR_LED A3
    #define spoint 90
    //-----------Motors-----------------//
    Servo servo;
    AF_DCMotor motor1(1);
    AF_DCMotor motor2(2);
    AF_DCMotor motor3(3);
    AF_DCMotor motor4(4);
    void setup() {
    Serial.begin(9600);

    pinMode(Trig,OUTPUT);//Trig A1
    pinMode(Echo,INPUT);//Echo A0
    pinMode(F_LED,OUTPUT);//F_LED A4 pin
    pinMode(B_LED,OUTPUT);//B_LED A5 pin
    pinMode(SL_LED,OUTPUT);//SL_LED A2 pin
    pinMode(SR_LED,OUTPUT);//SR_LED A3 pin
    servo.attach(S_motor);
    }
    void loop() {
    //-----------------Change_Mode----------------//
    blutooth_mode();
    //obstacle_mode();
    //voice_control();
    }
    //---------------------------Blutooth_Mode---------------------------//
    void blutooth_mode(){
    if (Serial.available() > 0) {
    value = Serial.read();
    Stop(); //Initialize with motors stopped.
    if (lightFront) {digitalWrite(F_LED, HIGH);
    }
    if (!lightFront) {digitalWrite(F_LED, LOW);
    }
    if (lightBack) {digitalWrite(B_LED, HIGH);
    }
    if (!lightBack) {digitalWrite(B_LED, LOW);
    }
    if (S_light) {digitalWrite(SL_LED, HIGH);
    digitalWrite(SR_LED, HIGH);
    }
    if (!S_light) {digitalWrite(SL_LED, LOW);
    digitalWrite(SR_LED, LOW);
    }
    switch (value) {
    case 'F':forward();break;
    case 'B':backward();break;
    case 'L':left();break;
    case 'R':right();break;
    case 'I':forwardRight();break;
    case 'G':forwardLeft();break;
    case 'J':backwardRight();break;
    case 'H':backwardLeft();break;
    case 'S':Stop();break;
    case '0':speedCar = 75;break;
    case '1':speedCar = 100;break;
    case '2':speedCar = 125;break;
    case '3':speedCar = 150;break;
    case '4':speedCar = 175;break;
    case '5':speedCar = 200;break;
    case '6':speedCar = 220;break;
    case '7':speedCar = 230;break;
    case '8':speedCar = 240;break;
    case '9':speedCar = 250;break;
    case 'q':speedCar = 255;break;
    case 'W':lightFront = true;break;
    case 'w':lightFront = false;break;
    case 'U':lightBack = true;break;
    case 'u':lightBack = false;break;
    case 'X':S_light = true;break;
    case 'x':S_light = false;break;
    }}

    }
    //------------------------Obstacle_Mode------------------------------//
    void obstacle_mode(){
    distance = ultrasonic();
    if (distance R) {
    O_left();
    delay(500);
    Stop();
    delay(200);
    }
    } else {
    forward();
    }

    }
    //-------------------------Voice_Control-----------------------------//
    void voice_control(){
    if (Serial.available() > 0) {
    value = Serial.read();
    Serial.println(value);
    if (value == '^') {
    forward();
    digitalWrite(SL_LED, HIGH);
    digitalWrite(SR_LED, HIGH);
    } else if (value == '-') {
    backward();
    } else if (value == '') {
    R = rightsee();
    servo.write(spoint);
    if (R >= 10 ) {
    O_right();
    delay(500);
    Stop();
    } else if (R < 10) {
    Stop();
    }
    } else if (value == '*') {
    Stop();
    }
    } else if (value == '!') {
    {digitalWrite(F_LED, HIGH);
    }
    } else if (value == '@') {
    {digitalWrite(F_LED, LOW);
    }
    } else if (value == '+') {
    {digitalWrite(B_LED, HIGH);
    }
    } else if (value == '_') {
    {digitalWrite(B_LED, LOW);
    }
    }
    }
    //-------------------------Ultrasonic----------------------------------//
    int ultrasonic(){
    digitalWrite(Trig,LOW);
    delayMicroseconds(4);
    digitalWrite(Trig,HIGH);
    delayMicroseconds(10);
    digitalWrite(Trig,LOW);
    long t = pulseIn(Echo,HIGH);
    long cm= t / 29/ 2;
    return cm;
    }
    void forward()
    {
    motor1.run(FORWARD);
    motor2.run(FORWARD);
    motor3.run(FORWARD);
    motor4.run(FORWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    forwardview();
    }
    void backward()
    {
    motor1.run(BACKWARD);
    motor2.run(BACKWARD);
    motor3.run(BACKWARD);
    motor4.run(BACKWARD);

    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    digitalWrite(B_LED,HIGH);
    }
    void left()
    {
    motor1.run(BACKWARD);
    motor2.run(BACKWARD);
    motor3.run(FORWARD);
    motor4.run(FORWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    digitalWrite(SL_LED, HIGH);
    leftview();

    }
    void O_left()
    {
    motor1.run(BACKWARD);
    motor2.run(BACKWARD);
    motor3.run(FORWARD);
    motor4.run(FORWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    digitalWrite(SL_LED, HIGH);

    }
    void right()
    {
    motor1.run(FORWARD);
    motor2.run(FORWARD);
    motor3.run(BACKWARD);
    motor4.run(BACKWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    digitalWrite(SR_LED, HIGH);
    rightview();
    }
    void O_right()
    {
    motor1.run(FORWARD);
    motor2.run(FORWARD);
    motor3.run(BACKWARD);
    motor4.run(BACKWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    digitalWrite(SR_LED, HIGH);
    }
    void forwardRight()
    {
    motor1.run(FORWARD);
    motor2.run(FORWARD);
    motor3.run(FORWARD);
    motor4.run(RELEASE);

    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    }
    void forwardLeft()
    {
    motor1.run(RELEASE);
    motor2.run(FORWARD);
    motor3.run(FORWARD);
    motor4.run(FORWARD);

    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    }
    void backwardRight()
    {
    motor1.run(BACKWARD);
    motor2.run(BACKWARD);
    motor3.run(RELEASE);
    motor4.run(BACKWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor4.setSpeed(speedCar);
    digitalWrite(B_LED,HIGH);
    }
    void backwardLeft()
    {
    motor1.run(BACKWARD);
    motor2.run(RELEASE);
    motor3.run(BACKWARD);
    motor4.run(BACKWARD);
    motor1.setSpeed(speedCar);
    motor2.setSpeed(speedCar);
    motor3.setSpeed(speedCar);
    digitalWrite(B_LED,HIGH);
    }
    void Stop()
    {
    motor1.run(RELEASE);
    motor2.run(RELEASE);
    motor3.run(RELEASE);
    motor4.run(RELEASE);
    }
    int rightsee(){
    servo.write(20);
    delay(500);
    Left = ultrasonic();
    return Left;
    }
    int leftsee(){
    servo.write(180);
    delay(500);
    Right = ultrasonic();
    return Right;
    }
    int leftview(){
    servo.write(180);

    }
    int rightview(){
    servo.write(20);
    }
    int forwardview(){
    servo.write(spoint);
    }

    • @ibrahimghgh4307
      @ibrahimghgh4307 Год назад

      Please can you send the code because it is not possible to copy the code from the comments

    • @hashansudeera7472
      @hashansudeera7472  Год назад +1

      @@ibrahimghgh4307 you can copy it

    • @asaditya2k649
      @asaditya2k649 8 месяцев назад

      Bhai mujhe ye aap copy kar ke bhej do n plz bhai

  • @maximaxbro76
    @maximaxbro76 Год назад +5

    Ela super bn 🔥❤️

  • @user-nh7le3nm3p
    @user-nh7le3nm3p 10 месяцев назад

    බුදු සරණයි මගේ පුතේ හොඳ ලස්සන වටින වැඩක්❤

  • @kaveeshachamod5652
    @kaveeshachamod5652 Год назад +2

    සුපිරි bm 🔥❤️

  • @janudisahansa1094
    @janudisahansa1094 Год назад +5

    Very amazing and very creative 😊

  • @WandimmuuAsmaamaw
    @WandimmuuAsmaamaw 5 месяцев назад +1

    the file needs password to extract
    what shall i do

  • @brimrez
    @brimrez Год назад +3

    New sub my bro, i love this car

  • @sashinthahimansana2687
    @sashinthahimansana2687 Год назад +5

    Superb✨

  • @rameshgamingff9719
    @rameshgamingff9719 Год назад +2

    supiri ban

  • @ramiruanusara3449
    @ramiruanusara3449 5 месяцев назад +1

    Well done bro❤

  • @javierrosendoarizu7200
    @javierrosendoarizu7200 Год назад +1

    Hello. I have problems to download de arduino code and the schematic. How can I do it?

  • @somnathjana6708
    @somnathjana6708 Год назад +2

    Sir I just want to ask one thing... for every different mode we have to upload the code every time...one by one...Is this possible that we can upload the code once to arduino uno and it follows the 3 methods (modes) which are bluetooth control, obstacle avoiding, voice control.

    • @sankethraosrcreations3676
      @sankethraosrcreations3676 Год назад

      Even I have the same question to be asked and can we just connect 2 motors insted of 4 motors??

    • @hashansudeera7472
      @hashansudeera7472  Год назад +2

      yep. we can switch between modes using the push button.I'm try it but not work.
      You can try it.

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      @@sankethraosrcreations3676 yes can.

    • @Johnson-vf2ny
      @Johnson-vf2ny Год назад

      Sir please how much is the total of all the parts

    • @srikantpurwar4618
      @srikantpurwar4618 6 месяцев назад

      Which button

  • @traiongxuan2756
    @traiongxuan2756 Год назад

    Can you tell me what command do you use to make your car's sensors turn in the direction you control?

  • @RinconMisterioso15
    @RinconMisterioso15 5 месяцев назад

    What if I activate Bluetooth mode and obstacle mode at the same time, does the car work in both ways?

  • @user-sh2uo5gu8w
    @user-sh2uo5gu8w 3 месяца назад +1

    Please 🥺🙏 give the code description please

  • @Aashutoshkumar-xu1zy
    @Aashutoshkumar-xu1zy 6 месяцев назад

    Sir which you using for controlling car?

  • @ashannimsara7620
    @ashannimsara7620 Год назад

    Maru maru ❤️😍

  • @kshivappa1976
    @kshivappa1976 Год назад

    hi, your circuit diagram is not able to open, can you resend in pdf form not in google drive.

  • @pasannadeesha
    @pasannadeesha Год назад +1

    Good job brother ❤️❤️

  • @danieljavier7012
    @danieljavier7012 Год назад

    how can i add ir sensor for line follower and the code needed

  • @user-tl6bn2kk9t
    @user-tl6bn2kk9t Год назад +1

    bro at the second line of the code error is there can you verify it send the new code

    • @sukin_paint
      @sukin_paint 4 месяца назад

      yes bro...there was an error

  • @konakhatun914
    @konakhatun914 6 месяцев назад

    Vai yeah kam nahi ho raha...servo ka library to inshtall kya je lekin firbhi yeah ho nahi raha....plz help kijiye vai ...servo motor ka librery file dijiye

    • @konakhatun914
      @konakhatun914 6 месяцев назад

      Vai servo ka library file dijiye plz

  • @friendu8261
    @friendu8261 Год назад

    Bro how to download your program it's only shows picture of circuit diagram

  • @leewa1778
    @leewa1778 Год назад +3

    What software do you use for voice control?

    • @hashansudeera7472
      @hashansudeera7472  Год назад +1

      Arduino bluecontrol.

    • @leewa1778
      @leewa1778 Год назад

      @@hashansudeera7472 if i use motor driver shield l298n instead of l293d, can i do like you?

    • @hashansudeera7472
      @hashansudeera7472  Год назад +1

      @@leewa1778 can't brother..

    • @leewa1778
      @leewa1778 Год назад

      @@hashansudeera7472 Can you guide me how to wire the led bulbs? I don't know this part very well.

    • @hashansudeera7472
      @hashansudeera7472  Год назад +1

      @@leewa1778 download circuit diagram in the discription bro..

  • @suvankar54
    @suvankar54 Год назад

    Can I implement three things simultaneously?

  • @suvankar54
    @suvankar54 Год назад

    How can I change car speed specified in this code??? Please reply

  • @MegaTafie
    @MegaTafie Год назад

    What's the name of the app you're using for voice control mode

  • @Overlord5242
    @Overlord5242 Год назад

    What's the difference between HC -5 AND HC -6

  • @nationinfinite786
    @nationinfinite786 8 месяцев назад

    Bro whats the bo.motor rpm you used

  • @TechandTravels45
    @TechandTravels45 Год назад

    HELLO HARSHAN CAN U TELL ME WHAT IS AN F -LED AND A B- LED , DO WE HAVE TO MAKE IT OR DO WE GET IT AT A ELECTRONIC STORE PLS REPLIE AND BY THE WAY AWESOME PROJECT

  • @lenkagamie5369
    @lenkagamie5369 Год назад

    Hola me puedes decir que materiales usas por favor es para la escuela

  • @karanpatel4378
    @karanpatel4378 5 месяцев назад

    Brother file to download ki lekin file open karne ke liye password maang raha he

  • @MustyBlox
    @MustyBlox 7 месяцев назад

    Can i do this without led? Pls reply

  • @sankethraosrcreations3676
    @sankethraosrcreations3676 Год назад

    Hello sir, I am getting a "Undeclared Motor1 " statement, how to fix that..??

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      include afmotor library bro.
      ruclips.net/video/0Ih1O0Fqwfw/видео.html

  • @tuanhoang9884
    @tuanhoang9884 Год назад +1

    Thank you so much!

  • @sahanjayasampath3283
    @sahanjayasampath3283 Год назад +2

    Good Work brother..💪

  • @yvonneafonso8896
    @yvonneafonso8896 Год назад

    Hi bro can u tell me how to download AF motor library and how to make the F led and the B led pls and also can u tell me if i can make the arduino do all the three programs with only one arduino
    Thanks

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      ruclips.net/video/VvE4KLt49OM/видео.html watch this video you can Download AF motor library.
      Download the Circuit diagram in the description

  • @manjugl7644
    @manjugl7644 Год назад

    It's good broo 🔥

  • @shyamalmondal2438
    @shyamalmondal2438 10 месяцев назад +1

    Thanku vai shhap mara car to op chal raha ha
    Keya up ka ph number milyaga

  • @konakhatun914
    @konakhatun914 6 месяцев назад

    Vai servo ka library file dijiye plz

  • @theekshanaruwan4613
    @theekshanaruwan4613 Год назад +1

    Super❤️

  • @Hoc-toiec-cung-cong
    @Hoc-toiec-cung-cong Год назад +2

    so amazing

  • @Funnyshortsreacter-nr
    @Funnyshortsreacter-nr Год назад

    Suberb😮

  • @GamerAnia32
    @GamerAnia32 Год назад

    Bro, when will a new video come, I have been waiting for a long time ..... 🤤❣️❣️❣️

  • @user-mp3du1oj5c
    @user-mp3du1oj5c 10 месяцев назад

    sir error is coming in uploading code
    avr dude:sktr500...........
    pleaser help me please

    • @hashansudeera7472
      @hashansudeera7472  10 месяцев назад

      Check your connections bro

    • @user-mp3du1oj5c
      @user-mp3du1oj5c 10 месяцев назад

      @@hashansudeera7472 sir checked multiple times .i have made same but it is not working even after uploading the code the light of the motor driver glow only when connected to laptop when i remove cable it stops glowing . Even after switching the switch on not working .Please help me i have science exhibition next week .i am very tensed and worried please

  • @AnshavParmar95._
    @AnshavParmar95._ Год назад

    Bro mera to cell dalen ke baad on hi ni ho rha

  • @krushnaofficial98
    @krushnaofficial98 Год назад +1

    Thanks bro

  • @dinukabro9681
    @dinukabro9681 Год назад +1

    Good Job brother

  • @GamerAnia32
    @GamerAnia32 Год назад +1

    Good 😊

  • @ikbalbilal
    @ikbalbilal Год назад +1

    Subrice done! Brother. 🤩

  • @Html-ng5dc
    @Html-ng5dc Год назад +1

    how must Total cost ?

  • @karanpatel4378
    @karanpatel4378 5 месяцев назад

    Guys password : smartcar

  • @devyadav2059
    @devyadav2059 Год назад

    AF motor error or sarvo h motor error please help me

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      include afmotor library bro.
      ruclips.net/video/0Ih1O0Fqwfw/видео.html

  • @farzan1937
    @farzan1937 Год назад

    It is not working

  • @devyadav2059
    @devyadav2059 Год назад

    thank you for my help

  • @jocar3665
    @jocar3665 Год назад

    hello, can I add esp32 wifi cam module on this?

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      Tx and RX pin required esp32 wifi cam module.
      We used the Tx and RX pins for the Bluetooth module.
      Therefore, it is difficult to include in this

    • @jocar3665
      @jocar3665 Год назад

      @@hashansudeera7472 so the option is to remove bluetooth for you to be able to put esp32 wifi cam and just control it via wifi? or do you think we can put additional module like L298 so we can put the esp32?

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      @@jocar3665 your first option is so great

  • @biswajitpattanaik9782
    @biswajitpattanaik9782 19 дней назад

    SOURCE CODE WILL BE NOT BE OPEN

  • @devyadav2059
    @devyadav2059 Год назад

    maine aisa hi robot Banaya usmein Mujhko dikkat ja rahi hai

  • @FOLLOWERSOFISLAM13
    @FOLLOWERSOFISLAM13 Год назад

    Bro i made this car but it not working

  • @anishaafonso4079
    @anishaafonso4079 Год назад

    Hi bro can u tell me how to put all the three codes on only one Arduino chip and how to function or rather shift the programmes from one and other pls
    Thnx the most innovative project ever

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      //-----------------Change_Mode----------------//
      //blutooth_mode();
      //obstacle_mode();
      //voice_control();
      Bro,You can change mode if u remove the comment tag. you can activated mode.
      Eg; //blutooth_mode(); ("//" remove)

    • @anishaafonso4079
      @anishaafonso4079 Год назад

      Bro I understood that but I was just wondering if I want to put all three codes on the same Arduino chip and if we can shift between them?? Is it possible becuz i want all the three codes ??

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      @@anishaafonso4079 ruclips.net/video/CP6U9R3w3xg/видео.html
      I'm try this.i'ts not worked bro.you try it

  • @tharunsai4351
    @tharunsai4351 Год назад

    can u send the link of code?
    the old link is not opening

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      drive.google.com/file/d/1QXRtIX0xaFtVVcxo762WKiGwMGq_7gsq/view

    • @karanpatel4378
      @karanpatel4378 5 месяцев назад

      Yaar bhai password kya hai

    • @karanpatel4378
      @karanpatel4378 5 месяцев назад

      Nahi batana to mana kar do bohot sare or bhi youtubers hai

  • @ramanareddy6673
    @ramanareddy6673 9 месяцев назад

    Hi bro

  • @Abhinav_Prakash_Patil_001
    @Abhinav_Prakash_Patil_001 Год назад

    Can we use esp32 dev Instead of Arduinp UNO ?

  • @gamingtechnicaltips6011
    @gamingtechnicaltips6011 Год назад

    bro how to make F-LED

  • @konakhatun914
    @konakhatun914 2 месяца назад

    password dedo

  • @karanpatel4378
    @karanpatel4378 5 месяцев назад

    Password kya hai?

  • @karanbhagat4996
    @karanbhagat4996 8 месяцев назад

    Digram

  • @beastgamervfx
    @beastgamervfx 5 месяцев назад

    Password kha hai 😅😅

  • @karanpatel4378
    @karanpatel4378 5 месяцев назад

    Sorry bro galat comment kar diya
    Aap ne password de rakha hai

  • @dlacademy155
    @dlacademy155 Год назад

    What's the app

  • @tusharshende9129
    @tusharshende9129 9 месяцев назад

    9

  • @devyadav2059
    @devyadav2059 Год назад

    please bhai ek madad kar do yaar

  • @devyadav2059
    @devyadav2059 Год назад

    😊😊😊😊❤️❤️❤️❤️❤️🥰❤️❤️🥰❤️❤️🥰❤️❤️🥰❤️❤️🙏❤️🙏❤️🙏❤️❤️❤️🙏🥰❤️🥰🙏🙏🥰🥰🥰😒🥰🙏😒😒❤️🥰🥰🥰🙏🥰🙏🥰🥰🙏🙏🥰🥰🙏🙏❤️🥰🙏🥰🙏🥰🙏

  • @karthikreddy1516
    @karthikreddy1516 Год назад

    Bro unable to download code

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      drive.google.com/file/d/1QXRtIX0xaFtVVcxo762WKiGwMGq_7gsq/view try this one bro.

    • @karthikreddy1516
      @karthikreddy1516 Год назад

      @@hashansudeera7472 when I click on that it shows copy file

    • @hashansudeera7472
      @hashansudeera7472  Год назад

      ​@@karthikreddy1516 Download it and extract the zip file bro.

    • @ramanmalhotra9119
      @ramanmalhotra9119 5 месяцев назад

      Chrome meinDesk​top ko uncheck karo phir ho jaye ga.@@karthikreddy1516

  • @warjimingading740
    @warjimingading740 Год назад

    what is passwords Mr?

  • @marcosdasilva7409
    @marcosdasilva7409 Год назад

    🇧🇷👏👏👍🇧🇷

  • @thesmpgamers7634
    @thesmpgamers7634 Год назад

    Password

  • @devyadav2059
    @devyadav2059 Год назад

    yeh mera number hai is per Mujhse contact kar lo